From: Vinay Sajip Date: Sun, 4 Oct 2009 12:20:12 +0000 (+0000) Subject: Issue #7052: Removed captureWarnings from __all__ X-Git-Tag: v2.6.4rc1~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fbbbb20054d269ec14a79f7f44aa5c99f22eb18f;p=thirdparty%2FPython%2Fcpython.git Issue #7052: Removed captureWarnings from __all__ --- diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 17d5220d0402..b6941b42b600 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']