This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author yurzo
Recipients yurzo
Date 2019-08-01.23:22:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
'root' should be a reserved name to avoid this:

>>> import logging
>>> a = logging.getLogger()
>>> b = logging.getLogger('root')
>>> a.name
'root'
>>> b.name
'root'
>>> a is b
False
History
Date User Action Args
2019-08-01 23:22:34yurzosetrecipients: + yurzo
2019-08-01 23:22:33yurzosetmessageid: <[email protected]>
2019-08-01 23:22:33yurzolinkissue37742 messages
2019-08-01 23:22:33yurzocreate