[Python-checkins] bpo-43184: Add information about added attribute and method. (GH-27347)

vsajip webhook-mailer at python.org
Sun Jul 25 12:36:39 EDT 2021


https://github.com/python/cpython/commit/50b72768ffe6413424dc4eba916dd1ff89a2fe7b
commit: 50b72768ffe6413424dc4eba916dd1ff89a2fe7b
branch: main
author: Vinay Sajip <vinay_sajip at yahoo.co.uk>
committer: vsajip <vinay_sajip at yahoo.co.uk>
date: 2021-07-25T17:36:30+01:00
summary:

bpo-43184: Add information about added attribute and method. (GH-27347)

files:
M Doc/library/logging.rst

diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 313cff4ff9658..9b35d4daef577 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
 -------------



More information about the Python-checkins mailing list