diff options
| author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2009-10-04 12:20:12 (GMT) |
|---|---|---|
| committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2009-10-04 12:20:12 (GMT) |
| commit | fbbbb20054d269ec14a79f7f44aa5c99f22eb18f (patch) | |
| tree | ea63b921bced0c1436fe18ce98860b24db9265b4 | |
| parent | 2b4df43c1c6c213ecbd2ee54bbfeb75fb2d14a84 (diff) | |
| download | cpython-fbbbb20054d269ec14a79f7f44aa5c99f22eb18f.zip cpython-fbbbb20054d269ec14a79f7f44aa5c99f22eb18f.tar.gz cpython-fbbbb20054d269ec14a79f7f44aa5c99f22eb18f.tar.bz2 | |
Issue #7052: Removed captureWarnings from __all__
| -rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 17d5220..b6941b4 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -27,7 +27,7 @@ __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR', 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO', 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig', - 'captureWarnings', 'critical', 'debug', 'disable', 'error', + 'critical', 'debug', 'disable', 'error', 'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass', 'info', 'log', 'makeLogRecord', 'setLoggerClass', 'warn', 'warning'] |
