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 amaury.forgeotdarc
Recipients Tom.Browder, amaury.forgeotdarc, barry
Date 2010-09-17.07:09:06
SpamBayes Score 5.3766795e-05
Marked as misclassified No
Message-id <1284707348.48.0.457930038606.issue9880@psf.upfronthosting.co.za>
In-reply-to
Content
For some reason your file os.pyc is corrupted:
I loaded it with a working python2.7:

import marshal, dis
pyc = open('bados.pyc', 'rb').read()
code = marshal.loads(pyc[8:])
dis.dis(code)

And it appears that all the "jump" instructions are wrong: the address is either 0, or something around 65536.

Which compiler do you use? I remember subtle bugs caused by some version of gcc.
History
Date User Action Args
2010-09-17 07:09:08amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, barry, Tom.Browder
2010-09-17 07:09:08amaury.forgeotdarcsetmessageid: <1284707348.48.0.457930038606.issue9880@psf.upfronthosting.co.za>
2010-09-17 07:09:07amaury.forgeotdarclinkissue9880 messages
2010-09-17 07:09:06amaury.forgeotdarccreate