summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-04 00:07:30 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-04 00:07:30 (GMT)
commit0013783d2f9d71e634fd2c91964bff27f87cbaa8 (patch)
tree17afdb9cf9ffedb22f6f011ea87e58c2cd96f4b6
parent22d2711cb6775b62475a0dbff7e6c4c984b51610 (diff)
downloadcpython-0013783d2f9d71e634fd2c91964bff27f87cbaa8.zip
cpython-0013783d2f9d71e634fd2c91964bff27f87cbaa8.tar.gz
cpython-0013783d2f9d71e634fd2c91964bff27f87cbaa8.tar.bz2
remove unused import
-rw-r--r--Lib/threading.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index e48bf5c..ff32dfb 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -12,7 +12,6 @@ import warnings
from time import time as _time, sleep as _sleep
from traceback import format_exc as _format_exc
-from collections import deque
# Note regarding PEP 8 compliant aliases
# This threading model was originally inspired by Java, and inherited