summaryrefslogtreecommitdiff
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 09:16:38 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 09:16:38 +0100
commit7fa767e517882f4d3503d168d3a4d4caad317752 (patch)
treecc4c73326ee706456b2c8de8530fed453e582b69 /Lib/threading.py
parent69b1e261fc703106b44095796d78ba6aacbbdb63 (diff)
downloadcpython-git-7fa767e517882f4d3503d168d3a4d4caad317752.tar.gz
Issue #20976: pyflakes: Remove unused imports
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index 5d68a9e513..34070830e7 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -3,7 +3,6 @@
import sys as _sys
import _thread
-from time import sleep as _sleep
try:
from time import monotonic as _time
except ImportError: