summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-01-21 02:15:48 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-01-21 02:15:48 (GMT)
commit63b3a97a2a7277fb05e2aeaee9890a25fb385702 (patch)
tree31da4d3262d20c369d0953761765b22186e4e9fc /Lib/test
parent08838b6acf4d0fecefcf4222632719985190dd67 (diff)
downloadcpython-63b3a97a2a7277fb05e2aeaee9890a25fb385702.zip
cpython-63b3a97a2a7277fb05e2aeaee9890a25fb385702.tar.gz
cpython-63b3a97a2a7277fb05e2aeaee9890a25fb385702.tar.bz2
merge r68839 forward to py3k
Diffstat (limited to 'Lib/test')
-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 9a307de..3681c60d 100644
--- a/Lib/test/test_multiprocessing.py
+++ b/Lib/test/test_multiprocessing.py
@@ -1058,8 +1058,10 @@ class _TestZZZNumberOfObjects(BaseTestCase):
multiprocessing.active_children() # discard dead process objs
gc.collect() # do garbage collection
refs = self.manager._number_of_objects()
+ debug_info = self.manager._debug_info()
if refs != EXPECTED_NUMBER:
print(self.manager._debug_info())
+ print(debug_info)
self.assertEqual(refs, EXPECTED_NUMBER)