diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-28 00:16:12 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-28 00:16:12 (GMT) |
commit | 56894b501a64b602919f830dc4b3e4abeaff24f5 (patch) | |
tree | 1d70fc62dd2c9615642307d80710238814c196c6 /Doc/library/logging.rst | |
parent | 7ab4b8d3a2e7e91f742a1339a5b8d2988f4b81b6 (diff) | |
download | cpython-56894b501a64b602919f830dc4b3e4abeaff24f5.zip cpython-56894b501a64b602919f830dc4b3e4abeaff24f5.tar.gz cpython-56894b501a64b602919f830dc4b3e4abeaff24f5.tar.bz2 |
fix versionchanged
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r-- | Doc/library/logging.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 1a5d7eb..9df4794 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -440,9 +440,9 @@ import mechanisms. Thus, you could use either `handlers.WatchedFileHandler` class defined in package `mypackage` and module `mymodule`, where `mypackage` is available on the Python import path). -.. versionchanged:: 2.7 +.. versionchanged:: 3.2 -In Python 2.7, a new means of configuring logging has been introduced, using +In Python 3.2, a new means of configuring logging has been introduced, using dictionaries to hold configuration information. This provides a superset of the functionality of the config-file-based approach outlined above, and is the recommended configuration method for new applications and deployments. Because |