diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2009-04-27 13:44:27 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2009-04-27 13:44:27 (GMT) |
commit | e34d6aa86fbf889def9ce6b40d4578e9741a693f (patch) | |
tree | cec89a51a7939e4dc2319e8fcfe4a82c78935ca3 /Lib | |
parent | 94290d390ec09f2368cc476f7a82d42d9c279c52 (diff) | |
download | cpython-e34d6aa86fbf889def9ce6b40d4578e9741a693f.zip cpython-e34d6aa86fbf889def9ce6b40d4578e9741a693f.tar.gz cpython-e34d6aa86fbf889def9ce6b40d4578e9741a693f.tar.bz2 |
Issue #5854: Updated __all__ to include some missing names and remove some names which should not be exported.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/logging/__init__.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 0b5e671..b499c28 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -24,9 +24,12 @@ To use, simply 'import logging' and log away! """ __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR', - 'FATAL', 'FileHandler', 'Filter', 'Filterer', 'Formatter', 'Handler', - 'INFO', 'LogRecord', 'Logger', 'Manager', 'NOTSET', 'PlaceHolder', - 'RootLogger', 'StreamHandler', 'WARN', 'WARNING'] + 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO', + 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler', + 'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig', + 'captureWarnings', 'critical', 'debug', 'disable', 'error', + 'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass', + 'info', 'log', 'makeLogRecord', 'setLoggerClass', 'warn', 'warning'] import sys, os, types, time, string, cStringIO, traceback, warnings @@ -43,8 +46,8 @@ except ImportError: __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" __status__ = "production" -__version__ = "0.5.0.7" -__date__ = "20 January 2009" +__version__ = "0.5.0.8" +__date__ = "27 April 2009" #--------------------------------------------------------------------------- # Miscellaneous module data |