summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2009-09-26 14:53:32 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2009-09-26 14:53:32 (GMT)
commit4780c9a0e0634ae0b5f5f508a9a8e4b8fac83a2c (patch)
tree32e05b456d09944dc69bb3abef06fbdfa79e3e08 /Doc/library/logging.rst
parent9aac2455ab9b47033b8b0807e28a3d8b4a9d9d37 (diff)
downloadcpython-4780c9a0e0634ae0b5f5f508a9a8e4b8fac83a2c.zip
cpython-4780c9a0e0634ae0b5f5f508a9a8e4b8fac83a2c.tar.gz
cpython-4780c9a0e0634ae0b5f5f508a9a8e4b8fac83a2c.tar.bz2
Tidied up name of parameter in StreamHandler
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 07833bb..ef2f34a 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -1681,9 +1681,9 @@ file-like object (or, more precisely, any object which supports :meth:`write`
and :meth:`flush` methods).
-.. class:: StreamHandler([strm])
+.. class:: StreamHandler([stream])
- Returns a new instance of the :class:`StreamHandler` class. If *strm* is
+ Returns a new instance of the :class:`StreamHandler` class. If *stream* is
specified, the instance will use it for logging output; otherwise, *sys.stderr*
will be used.