diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2017-06-06 15:34:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-06 15:34:29 (GMT) |
commit | 6260d9f2039976372e0896d517b3c06e606eb169 (patch) | |
tree | 5222777b12a41ead8367261d1c80c22eefca012d /Doc | |
parent | b87c0dfe902009e926edfb4ea5c7b26dcbdca2fe (diff) | |
download | cpython-6260d9f2039976372e0896d517b3c06e606eb169.zip cpython-6260d9f2039976372e0896d517b3c06e606eb169.tar.gz cpython-6260d9f2039976372e0896d517b3c06e606eb169.tar.bz2 |
bpo-30520: Implemented pickling for loggers. (#1956)
Implemented pickling for loggers.
Diffstat (limited to 'Doc')
-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 63059ac..1b27241 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -323,6 +323,8 @@ is the module's name in the Python package namespace. .. versionadded:: 3.2 + .. versionchanged:: 3.7 + Loggers can now be picked and unpickled. .. _levels: |