[Python-checkins] r70761 - in python/branches/release26-maint: Lib/test/test_multiprocessing.py

jesse.noller python-checkins at python.org
Mon Mar 30 23:57:37 CEST 2009


Author: jesse.noller
Date: Mon Mar 30 23:57:36 2009
New Revision: 70761

Log:
finalize the queue to resolve test issue

Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Lib/test/test_multiprocessing.py

Modified: python/branches/release26-maint/Lib/test/test_multiprocessing.py
==============================================================================
--- python/branches/release26-maint/Lib/test/test_multiprocessing.py	(original)
+++ python/branches/release26-maint/Lib/test/test_multiprocessing.py	Mon Mar 30 23:57:36 2009
@@ -1207,10 +1207,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