mirror of https://github.com/python/cpython
Fix missing import of the types module in logging.config.
(backport from rev. 51785)
This commit is contained in:
parent
291a1b89c6
commit
4dc095249e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue