summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-03-17 15:05:57 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-03-17 15:05:57 (GMT)
commit2060e42206d12900a0875d7b31ecc9f99ff9e16c (patch)
tree199831d1b7647de783aebbc827dfa4e8e57300bc /Lib/logging
parent187f93d986a571b0a7d797a3b114d5d877d261e1 (diff)
downloadcpython-2060e42206d12900a0875d7b31ecc9f99ff9e16c.zip
cpython-2060e42206d12900a0875d7b31ecc9f99ff9e16c.tar.gz
cpython-2060e42206d12900a0875d7b31ecc9f99ff9e16c.tar.bz2
Issue #8162: logging: Clarified docstring and documentation for disable function.
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index 7d70b4a..b1810d68 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -1557,7 +1557,7 @@ def log(level, msg, *args, **kwargs):
def disable(level):
"""
- Disable all logging calls less severe than 'level'.
+ Disable all logging calls of severity 'level' and below.
"""
root.manager.disable = level