[Python-checkins] r70774 - in python/branches/py3k: Lib/test/test_multiprocessing.py

jesse.noller python-checkins at python.org
Tue Mar 31 00:59:27 CEST 2009


Author: jesse.noller
Date: Tue Mar 31 00:59:27 2009
New Revision: 70774

Log:
finalize the queue to resolve test issue

Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_multiprocessing.py

Modified: python/branches/py3k/Lib/test/test_multiprocessing.py
==============================================================================
--- python/branches/py3k/Lib/test/test_multiprocessing.py	(original)
+++ python/branches/py3k/Lib/test/test_multiprocessing.py	Tue Mar 31 00:59:27 2009
@@ -1209,10 +1209,12 @@
         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()
 
 #
 #


More information about the Python-checkins mailing list