diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-25 19:30:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 19:30:50 (GMT) |
commit | 59058a65a27de434a79adb749637b74a7fe418ba (patch) | |
tree | 06f6d25f781d420ccf5e99cb755cdd7154f5acab /Doc/library | |
parent | 0aea99e44416f37c75e5540072156dbf90ef1659 (diff) | |
download | cpython-59058a65a27de434a79adb749637b74a7fe418ba.zip cpython-59058a65a27de434a79adb749637b74a7fe418ba.tar.gz cpython-59058a65a27de434a79adb749637b74a7fe418ba.tar.bz2 |
[3.10] bpo-43184: Add information about added attribute and method. (GH-27347) (GH-27355)
(cherry picked from commit 50b72768ffe6413424dc4eba916dd1ff89a2fe7b)
Diffstat (limited to 'Doc/library')
-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 70a703d..05e67e8 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -900,6 +900,10 @@ interchangeably. :meth:`~Logger.setLevel` and :meth:`~Logger.hasHandlers` methods were added to :class:`LoggerAdapter`. These methods delegate to the underlying logger. +.. versionchanged:: 3.6 + Attribute :attr:`manager` and method :meth:`_log` were added, which + delegate to the underlying logger and allow adapters to be nested. + Thread Safety ------------- |