summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2009-10-04 12:20:12 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2009-10-04 12:20:12 +0000
commitfbbbb20054d269ec14a79f7f44aa5c99f22eb18f (patch)
treeea63b921bced0c1436fe18ce98860b24db9265b4
parent2b4df43c1c6c213ecbd2ee54bbfeb75fb2d14a84 (diff)
downloadcpython-git-fbbbb20054d269ec14a79f7f44aa5c99f22eb18f.tar.gz
Issue #7052: Removed captureWarnings from __all__
-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 17d5220d04..b6941b42b6 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']