summaryrefslogtreecommitdiffstats
path: root/Lib/logging/handlers.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-04-15 21:27:17 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-04-15 21:27:17 (GMT)
commite723e96103493c6ee5a3125490b50dd63c1eebf9 (patch)
tree2f333a6050b22a9a8b1b14aa4b24c6c4a6cbca9b /Lib/logging/handlers.py
parent6c9e5b779f4cbb16f529f0451a07eaa57caad896 (diff)
downloadcpython-e723e96103493c6ee5a3125490b50dd63c1eebf9.zip
cpython-e723e96103493c6ee5a3125490b50dd63c1eebf9.tar.gz
cpython-e723e96103493c6ee5a3125490b50dd63c1eebf9.tar.bz2
Issue #11852: Add missing imports and update tests.
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 96384bd..3a48628 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