diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-03-12 22:43:23 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-03-12 22:43:23 +0000 |
commit | 5ddf51f73587fdd8348f1def87f8cf53aed0dd8e (patch) | |
tree | 9e24a62de9f40f687c5818a3ac733e0eb7f9451b | |
parent | c3ab30b363530c17b71bdfad09a01fa9c653c10e (diff) | |
download | cpython-git-5ddf51f73587fdd8348f1def87f8cf53aed0dd8e.tar.gz |
Fixes issue #11476: StreamHandler parameter name change documented.
-rw-r--r-- | Doc/library/logging.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 9898d08597..17a761a6f1 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1895,6 +1895,8 @@ and :meth:`flush` methods). specified, the instance will use it for logging output; otherwise, *sys.stderr* will be used. + .. versionchanged:: 2.7 + The ``stream`` parameter was called ``strm`` in earlier versions. .. method:: emit(record) |