commit | 019ce773cd25ee08d1a822f06958774b43881d00 | [log] [tgz] |
---|---|---|
author | Jesse Noller <jnoller@gmail.com> | Mon Mar 30 21:53:29 2009 +0000 |
committer | Jesse Noller <jnoller@gmail.com> | Mon Mar 30 21:53:29 2009 +0000 |
tree | 877caf67c58dcafa4c4083f803aaffc068af2b01 | |
parent | 5e95e763e1ba51b9bd4153aa016099e183b05434 [diff] [blame] |
finalize the queue prior to shutdown
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 76bd3ed..4388fe0 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py
@@ -1208,10 +1208,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() # #