summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/pool.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 08:16:38 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 08:16:38 (GMT)
commit7fa767e517882f4d3503d168d3a4d4caad317752 (patch)
treecc4c73326ee706456b2c8de8530fed453e582b69 /Lib/multiprocessing/pool.py
parent69b1e261fc703106b44095796d78ba6aacbbdb63 (diff)
downloadcpython-7fa767e517882f4d3503d168d3a4d4caad317752.zip
cpython-7fa767e517882f4d3503d168d3a4d4caad317752.tar.gz
cpython-7fa767e517882f4d3503d168d3a4d4caad317752.tar.bz2
Issue #20976: pyflakes: Remove unused imports
Diffstat (limited to 'Lib/multiprocessing/pool.py')
-rw-r--r--Lib/multiprocessing/pool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/pool.py b/Lib/multiprocessing/pool.py
index 1cb2d95..74d0875 100644
--- a/Lib/multiprocessing/pool.py
+++ b/Lib/multiprocessing/pool.py
@@ -24,7 +24,7 @@ import traceback
# If threading is available then ThreadPool should be provided. Therefore
# we avoid top-level imports which are liable to fail on some systems.
from . import util
-from . import get_context, cpu_count, TimeoutError
+from . import get_context, TimeoutError
#
# Constants representing the state of a pool