Fix missing import of the types module in logging.config.
diff --git a/Lib/logging/config.py b/Lib/logging/config.py
index 5ea0d15..f14eb12 100644
--- a/Lib/logging/config.py
+++ b/Lib/logging/config.py
@@ -27,7 +27,7 @@
To use, simply 'import logging' and log away!
"""
-import sys, logging, logging.handlers, string, socket, struct, os, traceback
+import sys, logging, logging.handlers, string, socket, struct, os, traceback, types
try:
import thread
diff --git a/Misc/NEWS b/Misc/NEWS
index 43e6a37..172d087 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@
Core and builtins
-----------------
+- Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.
+ Also make sure that every exception class has __module__ set to
+ 'exceptions'.
+
- Bug #1550983: emit better error messages for erroneous relative
imports (if not in package and if beyond toplevel package).
@@ -36,6 +40,8 @@
Library
-------
+- Fix missing import of the types module in logging.config.
+
- Patch #1550886: Fix decimal module context management implementation
to match the localcontext() example from PEP 343.