Kaydet (Commit) 4e933137 authored tarafından Georg Brandl's avatar Georg Brandl

Fix missing import of the types module in logging.config.

üst 38f6237d
...@@ -27,7 +27,7 @@ Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved. ...@@ -27,7 +27,7 @@ Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved.
To use, simply 'import logging' and log away! 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: try:
import thread import thread
......
...@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1? ...@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1?
Core and builtins 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 - Bug #1550983: emit better error messages for erroneous relative
imports (if not in package and if beyond toplevel package). imports (if not in package and if beyond toplevel package).
...@@ -36,6 +40,8 @@ Core and builtins ...@@ -36,6 +40,8 @@ Core and builtins
Library Library
------- -------
- Fix missing import of the types module in logging.config.
- Patch #1550886: Fix decimal module context management implementation - Patch #1550886: Fix decimal module context management implementation
to match the localcontext() example from PEP 343. to match the localcontext() example from PEP 343.
......
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