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, rhettinger
Date 2009-01-05.12:06:02
SpamBayes Score 0.012789007
Marked as misclassified No
Message-id <1231157163.52.0.100323972249.issue4842@psf.upfronthosting.co.za>
In-reply-to
Content
Here's the issue with pickle:  with this patch, the pickle of a long using 
pickle protocol 0 under 2.x can't be read by Python 3.x, because (1) the 
pickled long includes a trailing L, and (2) unpickling goes via a call to 
PyLong_FromString.

Maybe the simplest thing is to continue to let int('3L') be valid.
History
Date User Action Args
2009-01-05 12:06:03mark.dickinsonsetrecipients: + mark.dickinson, gvanrossum, rhettinger
2009-01-05 12:06:03mark.dickinsonsetmessageid: <1231157163.52.0.100323972249.issue4842@psf.upfronthosting.co.za>
2009-01-05 12:06:02mark.dickinsonlinkissue4842 messages
2009-01-05 12:06:02mark.dickinsoncreate