diff options
author | Victor Stinner <vstinner@python.org> | 2020-05-01 00:38:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 00:38:00 (GMT) |
commit | eb0d359b4b0e14552998e7af771a088b4fd01745 (patch) | |
tree | a05573f729194e3678fb2bd6b119d165d0b82778 /Lib/multiprocessing | |
parent | 2935e65c36fab1989bbda19db72c035ea22b044b (diff) | |
download | cpython-eb0d359b4b0e14552998e7af771a088b4fd01745.zip cpython-eb0d359b4b0e14552998e7af771a088b4fd01745.tar.gz cpython-eb0d359b4b0e14552998e7af771a088b4fd01745.tar.bz2 |
bpo-40443: Remove unused imports in stdlib (GH-19815)
Diffstat (limited to 'Lib/multiprocessing')
-rw-r--r-- | Lib/multiprocessing/pool.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/multiprocessing/pool.py b/Lib/multiprocessing/pool.py index b8a0b82..bbe05a5 100644 --- a/Lib/multiprocessing/pool.py +++ b/Lib/multiprocessing/pool.py @@ -22,7 +22,6 @@ import time import traceback import types import warnings -from queue import Empty # If threading is available then ThreadPool should be provided. Therefore # we avoid top-level imports which are liable to fail on some systems. |