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 brett.cannon
Recipients brett.cannon, gvanrossum, thomaslee
Date 2007-10-21.00:35:06
SpamBayes Score 0.15559317
Marked as misclassified No
Message-id <1192926907.3.0.113013801667.issue1263@psf.upfronthosting.co.za>
In-reply-to
Content
Attached is a fix for modulefinder.

It is an ugly hack as modulefinder took the numeric opcode numbers from
dis and passed them to chr().  But that doesn't work since that returns
Unicode.  So I took those single characters and passed them to str8().

Once str8() has its constructor match bytes() then the chr() call can be
ditched and the dis values can be tossed into a single-item list.
Files
File name Uploaded
fix_modulefinder.diff brett.cannon, 2007-10-21.00:35:06
History
Date User Action Args
2007-10-21 00:35:07brett.cannonsetspambayes_score: 0.155593 -> 0.15559317
recipients: + brett.cannon, gvanrossum, thomaslee
2007-10-21 00:35:07brett.cannonsetspambayes_score: 0.155593 -> 0.155593
messageid: <1192926907.3.0.113013801667.issue1263@psf.upfronthosting.co.za>
2007-10-21 00:35:07brett.cannonlinkissue1263 messages
2007-10-21 00:35:06brett.cannoncreate