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 nnorwitz
Recipients nnorwitz
Date 2007-08-25.17:47:07
SpamBayes Score 0.057056908
Marked as misclassified No
Message-id <1188064028.04.0.310195892385.issue1022@psf.upfronthosting.co.za>
In-reply-to
Content
This patch has a hack to read in marshaled code objects.  Bytes can't be 
marshaled currently (they are stored as strings).  So when reading a 
marshaled code object, the hack converts them to bytes.

All tests except test_modulefinder pass.

The issue is that since bytes are mutable, they aren't suitable for code 
objects since a user could change them at any time.
Files
File name Uploaded
code-bytes.patch nnorwitz, 2007-08-25.17:47:07
History
Date User Action Args
2007-08-25 17:47:08nnorwitzsetspambayes_score: 0.0570569 -> 0.057056908
recipients: + nnorwitz
2007-08-25 17:47:08nnorwitzsetspambayes_score: 0.0570569 -> 0.0570569
messageid: <1188064028.04.0.310195892385.issue1022@psf.upfronthosting.co.za>
2007-08-25 17:47:08nnorwitzlinkissue1022 messages
2007-08-25 17:47:07nnorwitzcreate