diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-03-29 00:07:50 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-03-29 00:07:50 (GMT) |
commit | af1fee06c96fe24729240498c00ea5fc3d9c5b22 (patch) | |
tree | 2185a3ad30bbd0fcf70e7c0fc648ae1b30d41981 | |
parent | f23c515e5b932ee26c3eaa95bf0447fbe43b2c47 (diff) | |
download | cpython-af1fee06c96fe24729240498c00ea5fc3d9c5b22.zip cpython-af1fee06c96fe24729240498c00ea5fc3d9c5b22.tar.gz cpython-af1fee06c96fe24729240498c00ea5fc3d9c5b22.tar.bz2 |
Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX.
-rw-r--r-- | Doc/library/logging.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index c95b8de..6674dfa 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -2545,6 +2545,8 @@ logging module using these functions or by making calls to the main API (defined in :mod:`logging` itself) and defining handlers which are declared either in :mod:`logging` or :mod:`logging.handlers`. +.. currentmodule:: logging.config + .. function:: fileConfig(fname[, defaults]) @@ -2578,6 +2580,8 @@ in :mod:`logging` itself) and defining handlers which are declared either in :func:`listen`. +.. currentmodule:: logging + .. _logging-config-fileformat: Configuration file format |