This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark.dickinson
Recipients jnoller, mark.dickinson
Date 2008-07-17.20:29:04
SpamBayes Score 0.038733624
Marked as misclassified No
Message-id <1216326547.53.0.561012238896.issue3395@psf.upfronthosting.co.za>
In-reply-to
Content
In _TestZZZNumberOfObjects in test_multiprocessing.py, at around line 1040  
(this is r65075 on the trunk), there's a line:

            print self.manager._debugInfo()

Should this be

            print self.manager._debug_info()

?

While running test_multiprocessing directly (./python.exe 
Lib/test/test_multiprocessing) I got the following traceback:

Macintosh-3:trunk dickinsm$ ./python.exe Lib/test/test_multiprocessing.py
test_array (__main__.WithProcessesTestArray) ... ok
test_getobj_getlock_obj (__main__.WithProcessesTestArray) ... ok
...
[snip lots of passing tests]
...
test_rawvalue (__main__.WithManagerTestValue) ... ok
test_value (__main__.WithManagerTestValue) ... ok
test_number_of_objects (__main__.WithManagerTestZZZNumberOfObjects) ... 
ERROR

======================================================================
ERROR: test_number_of_objects (__main__.WithManagerTestZZZNumberOfObjects)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "Lib/test/test_multiprocessing.py", line 1040, in 
test_number_of_objects
    print self.manager._debugInfo()
AttributeError: 'SyncManager' object has no attribute '_debugInfo'

----------------------------------------------------------------------
Ran 121 tests in 10.446s

FAILED (errors=1)
[53431 refs]
History
Date User Action Args
2008-07-17 20:29:08mark.dickinsonsetspambayes_score: 0.0387336 -> 0.038733624
recipients: + mark.dickinson, jnoller
2008-07-17 20:29:07mark.dickinsonsetspambayes_score: 0.0387336 -> 0.0387336
messageid: <1216326547.53.0.561012238896.issue3395@psf.upfronthosting.co.za>
2008-07-17 20:29:06mark.dickinsonlinkissue3395 messages
2008-07-17 20:29:05mark.dickinsoncreate