summaryrefslogtreecommitdiffstats
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-06-13 14:28:41 (GMT)
committerGitHub <noreply@github.com>2022-06-13 14:28:41 (GMT)
commit259dd71c32a42708a2800c72898e2664a33fda9c (patch)
tree5c9a1e367ccc37526054a30867a14db9ad45430a /Lib/threading.py
parent65ac273280fa909f42dd78f3da634e6669e2b63d (diff)
downloadcpython-259dd71c32a42708a2800c72898e2664a33fda9c.zip
cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.gz
cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.bz2
gh-84623: Remove unused imports in stdlib (#93773)
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index a3df587..e32ad14 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -7,7 +7,7 @@ import functools
from time import monotonic as _time
from _weakrefset import WeakSet
-from itertools import islice as _islice, count as _count
+from itertools import count as _count
try:
from _collections import deque as _deque
except ImportError: