diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-10-16 16:06:22 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-10-16 16:06:22 (GMT) |
commit | 1f2eaa97eb9119bd2e98d9b62b5303850c78d2f6 (patch) | |
tree | 0f27041341e83bfcc146041b89efe1d7244d45b6 /Lib/concurrent | |
parent | b1694cf588ca915c003b9b79c9fdeab82deb9476 (diff) | |
download | cpython-1f2eaa97eb9119bd2e98d9b62b5303850c78d2f6.zip cpython-1f2eaa97eb9119bd2e98d9b62b5303850c78d2f6.tar.gz cpython-1f2eaa97eb9119bd2e98d9b62b5303850c78d2f6.tar.bz2 |
Fix import of SimpleQueue.
Diffstat (limited to 'Lib/concurrent')
-rw-r--r-- | Lib/concurrent/futures/process.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py index 6298c65..07b5225 100644 --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -49,8 +49,9 @@ import atexit import os from concurrent.futures import _base import queue +from queue import Full import multiprocessing -from multiprocessing.queues import SimpleQueue, Full +from multiprocessing import SimpleQueue from multiprocessing.connection import wait import threading import weakref |