summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-30 21:57:36 +0000
committerJesse Noller <jnoller@gmail.com>2009-03-30 21:57:36 +0000
commitd5ac4447bae5a1cb03b8b4ac6cd1d061de03493c (patch)
tree5d70b459cb9e836e06cada6da1b26dda68d0aef7
parent524e36a5d0d9ab811f4dabfa26fbde8564393927 (diff)
downloadcpython-git-d5ac4447bae5a1cb03b8b4ac6cd1d061de03493c.tar.gz
finalize the queue to resolve test issue
-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 aa4743f127..d2503f619c 100644
--- a/Lib/test/test_multiprocessing.py
+++ b/Lib/test/test_multiprocessing.py
@@ -1207,10 +1207,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()
#
#