diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-04-15 21:29:15 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-04-15 21:29:15 (GMT) |
commit | cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6 (patch) | |
tree | e446164d6f1f4475ba65ba0aac3ddc3536e00b71 /Lib/logging | |
parent | b5a40d4d3f5f472fc19ff84e745f150a21391d09 (diff) | |
parent | e723e96103493c6ee5a3125490b50dd63c1eebf9 (diff) | |
download | cpython-cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6.zip cpython-cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6.tar.gz cpython-cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6.tar.bz2 |
Issue #11852: Merge fix from 3.2.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/handlers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 57b2057..5616920 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -26,6 +26,8 @@ To use, simply 'import logging.handlers' and log away! import logging, socket, os, pickle, struct, time, re from stat import ST_DEV, ST_INO, ST_MTIME +import queue +import threading try: import codecs |