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 barry
Recipients barry, benjamin.peterson, doko, martin.panter, serhiy.storchaka
Date 2015-12-01.16:54:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448988886.45.0.872827585364.issue25698@psf.upfronthosting.co.za>
In-reply-to
Content
At the problematic breakpoint mentioned in msg255630, copy_reg is nearly empty.

(Pdb) sys.modules['copy_reg']
<module 'copy_reg' from '/build/python2.7-96oGYh/python2.7-2.7.11~rc1/Lib/copy_reg.pyc'>
(Pdb) dir(sys.modules['copy_reg'])
['__builtins__', '__doc__', '__file__', '__name__', '__package__']
(Pdb) sys.modules['copy_reg'].__file__
'/build/python2.7-96oGYh/python2.7-2.7.11~rc1/Lib/copy_reg.pyc'
(Pdb) sys.modules['copy_reg'].__doc__ 
(Pdb) sys.modules['copy_reg'].__name__
'copy_reg'
(Pdb) sys.modules['copy_reg'].__package__
History
Date User Action Args
2015-12-01 16:54:46barrysetrecipients: + barry, doko, benjamin.peterson, martin.panter, serhiy.storchaka
2015-12-01 16:54:46barrysetmessageid: <1448988886.45.0.872827585364.issue25698@psf.upfronthosting.co.za>
2015-12-01 16:54:46barrylinkissue25698 messages
2015-12-01 16:54:46barrycreate