#7052: remove nonexisting NullHandler from logging.__all__.
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index 2b8a021..17d5220 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -25,7 +25,7 @@
 
 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
            'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO',
-           'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
+           'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET',
            'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig',
            'captureWarnings', 'critical', 'debug', 'disable', 'error',
            'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass',
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index 0a8c5d6..9cc37de 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -91,6 +91,7 @@
         self.check_all("keyword")
         self.check_all("linecache")
         self.check_all("locale")
+        self.check_all("logging")
         self.check_all("macpath")
         self.check_all("macurl2path")
         self.check_all("mailbox")
diff --git a/Misc/NEWS b/Misc/NEWS
index ab14d9d..1400664 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,9 +18,12 @@
 Library
 -------
 
+- Issue #7052: Removed nonexisting NullHandler from logging.__all__.
+
 - Issue #7039: Fixed distutils.tests.test_sysconfig when running on
   installation with no build.
 
+
 What's New in Python 2.6.3
 ==========================