summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multiprocessing.py
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-30 22:59:27 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-30 22:59:27 (GMT)
commit35d1f00902d6665f7f833bda5fad2fb6c0efce95 (patch)
tree057ecb08442aa48fd5db0a80914ff7a091d5acef /Lib/test/test_multiprocessing.py
parent0ad59d467d06c8c9dce81658f4f278783cb70b9f (diff)
downloadcpython-35d1f00902d6665f7f833bda5fad2fb6c0efce95.zip
cpython-35d1f00902d6665f7f833bda5fad2fb6c0efce95.tar.gz
cpython-35d1f00902d6665f7f833bda5fad2fb6c0efce95.tar.bz2
finalize the queue to resolve test issue
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r--Lib/test/test_multiprocessing.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py
index 33f3bf3..ed8c626 100644
--- a/Lib/test/test_multiprocessing.py
+++ b/Lib/test/test_multiprocessing.py
@@ -1209,10 +1209,12 @@ class _TestManagerRestart(BaseTestCase):
p.start()
queue = manager.get_queue()
self.assertEqual(queue.get(), 'hello world')
+ del queue
manager.shutdown()
manager = QueueManager(
address=('localhost', 9999), authkey=authkey, serializer=SERIALIZER)
manager.start()
+ manager.shutdown()
#
#