summaryrefslogtreecommitdiffstats
path: root/Lib/logging/__init__.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-04 09:03:59 (GMT)
committerGeorg Brandl <georg@python.org>2009-10-04 09:03:59 (GMT)
commit2b4df43c1c6c213ecbd2ee54bbfeb75fb2d14a84 (patch)
treeeeff2e51107f6a7cf22d3090d0e85ee2662912d5 /Lib/logging/__init__.py
parente8b2d18f809a1ec76bd98c5150cde0e4ed0913d0 (diff)
downloadcpython-2b4df43c1c6c213ecbd2ee54bbfeb75fb2d14a84.zip
cpython-2b4df43c1c6c213ecbd2ee54bbfeb75fb2d14a84.tar.gz
cpython-2b4df43c1c6c213ecbd2ee54bbfeb75fb2d14a84.tar.bz2
#7052: remove nonexisting NullHandler from logging.__all__.
Diffstat (limited to 'Lib/logging/__init__.py')
-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 2b8a021..17d5220 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -25,7 +25,7 @@ To use, simply 'import logging' and log away!
__all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO',
- 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
+ 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET',
'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig',
'captureWarnings', 'critical', 'debug', 'disable', 'error',
'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass',