Fix issue 3395, update _debugInfo to be _debug_info

This commit is contained in:
Jesse Noller 2008-07-17 21:01:05 +00:00
parent d6c393ab2b
commit 7fb9640d57
2 changed files with 3 additions and 1 deletions

View File

@ -1037,7 +1037,7 @@ class _TestZZZNumberOfObjects(BaseTestCase):
gc.collect() # do garbage collection
refs = self.manager._number_of_objects()
if refs != EXPECTED_NUMBER:
print self.manager._debugInfo()
print self.manager._debug_info()
self.assertEqual(refs, EXPECTED_NUMBER)

View File

@ -67,6 +67,8 @@ Core and Builtins
Library
-------
- Issue #3395: fix reference in test_multiprocessing to old debugInfo method
- Issue #3312: Fix two crashes in sqlite3.
- Issue #1608818: Fix misbehavior in os.listdir() if readdir() fails.