diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-02-04 00:07:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-02-04 00:07:30 (GMT) |
commit | 050a05aeef64df285c4c261cce1fcf5b3335e75d (patch) | |
tree | d49c4883868948629c730b46a4d417b717ccb590 /Lib/threading.py | |
parent | 342949195033a078ac341ca219406e30fb9b51ec (diff) | |
download | cpython-050a05aeef64df285c4c261cce1fcf5b3335e75d.zip cpython-050a05aeef64df285c4c261cce1fcf5b3335e75d.tar.gz cpython-050a05aeef64df285c4c261cce1fcf5b3335e75d.tar.bz2 |
remove unused import
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index fe92f10..69b7763 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -5,7 +5,6 @@ import _thread from time import time as _time, sleep as _sleep from traceback import format_exc as _format_exc -from collections import deque from _weakrefset import WeakSet # Note regarding PEP 8 compliant names |