Commit ad5fa2fb authored by Vinay Sajip's avatar Vinay Sajip

Issue #5854: Updated __all__ to include some missing names and remove some...

Issue #5854: Updated __all__ to include some missing names and remove some names which should not be exported.
parent 8654ce12
...@@ -26,9 +26,12 @@ To use, simply 'import logging' and log away! ...@@ -26,9 +26,12 @@ To use, simply 'import logging' and log away!
import sys, os, time, io, traceback, warnings import sys, os, time, io, traceback, warnings
__all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR', __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
'FATAL', 'FileHandler', 'Filter', 'Filterer', 'Formatter', 'Handler', 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO',
'INFO', 'LogRecord', 'Logger', 'Manager', 'NOTSET', 'PlaceHolder', 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
'RootLogger', 'StreamHandler', 'WARN', 'WARNING'] 'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig',
'captureWarnings', 'critical', 'debug', 'disable', 'error',
'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass',
'info', 'log', 'makeLogRecord', 'setLoggerClass', 'warn', 'warning']
try: try:
import codecs import codecs
......
...@@ -89,6 +89,9 @@ Installation ...@@ -89,6 +89,9 @@ Installation
Library Library
------- -------
- Issue #5854: Updated __all__ to include some missing names and remove some
names which should not be exported.
- Issue #3102: All global symbols that the _ctypes extension defines - Issue #3102: All global symbols that the _ctypes extension defines
are now prefixed with 'Py' or '_ctypes'. are now prefixed with 'Py' or '_ctypes'.
...@@ -455,7 +458,7 @@ Core and Builtins ...@@ -455,7 +458,7 @@ Core and Builtins
Library Library
------- -------
- Issue #5810: Fixed Distutils test_build_scripts so it uses - Issue #5810: Fixed Distutils test_build_scripts so it uses
sysconfig.get_config_vars. sysconfig.get_config_vars.
- Issue #4951: Fixed failure in test_httpservers. - Issue #4951: Fixed failure in test_httpservers.
...@@ -466,7 +469,7 @@ Library ...@@ -466,7 +469,7 @@ Library
- Issue #5732: added a new command in Distutils: check. - Issue #5732: added a new command in Distutils: check.
- Issue #5731: Distutils bdist_wininst no longer worked on non-Windows - Issue #5731: Distutils bdist_wininst no longer worked on non-Windows
platforms. Initial patch by Paul Moore. platforms. Initial patch by Paul Moore.
- Issue #5095: Added bdist_msi to the list of bdist supported formats. - Issue #5095: Added bdist_msi to the list of bdist supported formats.
...@@ -931,7 +934,7 @@ Tests ...@@ -931,7 +934,7 @@ Tests
----- -----
- regrtest no longer treats ImportError as equivalent to SkipTest. Imports - regrtest no longer treats ImportError as equivalent to SkipTest. Imports
that should cause a test to be skipped are now done using import_module that should cause a test to be skipped are now done using import_module
from test support, which does the conversion. from test support, which does the conversion.
- Issue #5083: New 'gui' resource for regrtest. - Issue #5083: New 'gui' resource for regrtest.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment