From: Jesse Noller Date: Mon, 30 Mar 2009 22:59:27 +0000 (+0000) Subject: finalize the queue to resolve test issue X-Git-Tag: v3.1a2~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35d1f00902d6665f7f833bda5fad2fb6c0efce95;p=python finalize the queue to resolve test issue --- diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 33f3bf306e..ed8c62630b 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() # #