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

(backport from rev. 51785)
This commit is contained in:
Georg Brandl 2006-09-06 20:06:27 +00:00
parent 291a1b89c6
commit 4dc095249e
2 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,7 @@ Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved.
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

View File

@ -46,6 +46,8 @@ Core and builtins
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.