summaryrefslogtreecommitdiffstats
path: root/Lib/logging/handlers.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-04-15 21:29:15 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-04-15 21:29:15 (GMT)
commitcd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6 (patch)
treee446164d6f1f4475ba65ba0aac3ddc3536e00b71 /Lib/logging/handlers.py
parentb5a40d4d3f5f472fc19ff84e745f150a21391d09 (diff)
parente723e96103493c6ee5a3125490b50dd63c1eebf9 (diff)
downloadcpython-cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6.zip
cpython-cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6.tar.gz
cpython-cd5a2bd48ef2c8fa07a2d47833f5b51c8468aab6.tar.bz2
Issue #11852: Merge fix from 3.2.
Diffstat (limited to 'Lib/logging/handlers.py')
-rw-r--r--Lib/logging/handlers.py2
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