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 gvanrossum, mark.dickinson, pitrou, rhettinger
Date 2009-01-05.23:34:22
SpamBayes Score 0.00034793955
Marked as misclassified No
Message-id <1231198466.7.0.23466659172.issue4842@psf.upfronthosting.co.za>
In-reply-to
Content
I guess that makes this a release blocker for 3.0.1, then.

Here's a second patch, complementary to the first, that fixes pickling of 
longs so that pickle protocol 0 in Python 3.0.1 and later behaves 
identically to pickle protocol 0 in Python 2.x.  Namely:

 - an 'L' is always appended on output, and
 - an 'L' is permitted, but not required, on input

This keeps compatibility both with 2.x and with 3.0.0.

issue4842_pickle.patch should be applied before issue4842.patch.
History
Date User Action Args
2009-01-05 23:34:27mark.dickinsonsetrecipients: + mark.dickinson, gvanrossum, rhettinger, pitrou
2009-01-05 23:34:26mark.dickinsonsetmessageid: <1231198466.7.0.23466659172.issue4842@psf.upfronthosting.co.za>
2009-01-05 23:34:26mark.dickinsonlinkissue4842 messages
2009-01-05 23:34:25mark.dickinsoncreate