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 vinay.sajip
Recipients docs@python, eric.araujo, ezio.melotti, georg.brandl, simonmweber, vinay.sajip
Date 2013-11-30.11:16:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385810214.77.0.833138333397.issue19789@psf.upfronthosting.co.za>
In-reply-to
Content
It's not the docstring in the code, it's the actual documentation. I propose to change it so that the documentation for disable will read:

Provides an overriding level *lvl* for all loggers which takes precedence over the logger's own level. When the need arises to temporarily throttle logging output down across the whole application, this function can be useful. Its effect is to disable all logging calls of severity *lvl* and below, so that if you call it with a value of INFO, then all INFO and DEBUG events would be discarded, whereas those of severity WARNING and above would be processed according to the logger's effective level. If ``logging.disable(logging.NOTSET)`` is called, it effectively removes this overriding level, so that logging output again depends on the effective levels of individual loggers.

Please confirm if this is still not clear enough, otherwise I will commit this in a day or two and close the issue.
History
Date User Action Args
2013-11-30 11:16:54vinay.sajipsetrecipients: + vinay.sajip, georg.brandl, ezio.melotti, eric.araujo, docs@python, simonmweber
2013-11-30 11:16:54vinay.sajipsetmessageid: <1385810214.77.0.833138333397.issue19789@psf.upfronthosting.co.za>
2013-11-30 11:16:54vinay.sajiplinkissue19789 messages
2013-11-30 11:16:54vinay.sajipcreate