From fbbbb20054d269ec14a79f7f44aa5c99f22eb18f Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Sun, 4 Oct 2009 12:20:12 +0000 Subject: [PATCH] Issue #7052: Removed captureWarnings from __all__ --- Lib/logging/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 17d5220d040..b6941b42b60 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']