summaryrefslogtreecommitdiff
path: root/Lib/concurrent
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-10-16 17:06:22 +0100
committerRichard Oudkerk <shibturn@gmail.com>2013-10-16 17:06:22 +0100
commit2d7a4a5bbca31f48f6a0166f22524f6cc22dc077 (patch)
tree7ee6cc4dae218dd0f432bdf100754a4947bca0ef /Lib/concurrent
parentee62dd99f3616d25a0362a5e521dc9b9160f0c79 (diff)
downloadcpython-2d7a4a5bbca31f48f6a0166f22524f6cc22dc077.tar.gz
Fix import of SimpleQueue.
Diffstat (limited to 'Lib/concurrent')
-rw-r--r--Lib/concurrent/futures/process.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py
index 6298c658a0..07b5225d1d 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