Mark Dickinson <dicki...@gmail.com> added the comment: 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. _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue4842> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com