From 5bb9a8f237d3f45e930a9a10ac0ca9c35906992a Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 6 Mar 2012 13:43:24 +0100 Subject: Remove a couple of local imports. --- Lib/test/test_multiprocessing.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 07843f9..0db6352 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -2494,15 +2494,14 @@ class TestWait(unittest.TestCase): w.close() def test_wait(self, slow=False): - from multiprocessing import Pipe, Process from multiprocessing.connection import wait readers = [] procs = [] messages = [] for i in range(4): - r, w = Pipe(duplex=False) - p = Process(target=self._child_test_wait, args=(w, slow)) + r, w = multiprocessing.Pipe(duplex=False) + p = multiprocessing.Process(target=self._child_test_wait, args=(w, slow)) p.daemon = True p.start() w.close() @@ -2535,7 +2534,6 @@ class TestWait(unittest.TestCase): s.close() def test_wait_socket(self, slow=False): - from multiprocessing import Process from multiprocessing.connection import wait l = socket.socket() l.bind(('', 0)) @@ -2546,7 +2544,8 @@ class TestWait(unittest.TestCase): dic = {} for i in range(4): - p = Process(target=self._child_test_wait_socket, args=(addr, slow)) + p = multiprocessing.Process(target=self._child_test_wait_socket, + args=(addr, slow)) p.daemon = True p.start() procs.append(p) -- cgit v0.12