From: Vinay Sajip Date: Sun, 25 Jul 2021 16:36:30 +0000 (+0100) Subject: bpo-43184: Add information about added attribute and method. (GH-27347) X-Git-Tag: v3.11.0a1~580 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=50b72768ffe6413424dc4eba916dd1ff89a2fe7b;p=thirdparty%2FPython%2Fcpython.git bpo-43184: Add information about added attribute and method. (GH-27347) --- diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 313cff4ff965..9b35d4daef57 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 -------------