[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2013-04-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: serhiy.storchaka -> alexandre.vassalotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2013-04-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4ced30417300 by Alexandre Vassalotti in branch '3.3': Issue #16550: Update the opcode descriptions of pickletools to use unsigned http://hg.python.org/cpython/rev/4ced30417300 -- nosy: +python-dev ___ Pyt

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2012-12-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Lib/test/pickletester.py contains some bigmem tests, they can be modified to cover issue12848 and this issue. But I can't run this tests. -- ___ Python tracker _

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2012-12-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Does it need additional tests? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2012-11-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

2012-11-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Since issue12848 some lengths in pickle module treated as unsigned, however pyckletools module treats all 32-bit lengths as signed. The proposed patch adds support of unsigned 32-bit lengths. -- components: Library (Lib) files: pickletools_uint4.pa