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 alexandre.vassalotti
Recipients alexandre.vassalotti, amaury.forgeotdarc, meawoppl, santoso.wijaya, xuanji
Date 2013-05-02.22:43:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367534611.91.0.716935961774.issue11872@psf.upfronthosting.co.za>
In-reply-to
Content
It is an integer overflow issue. It is easy to reproduce without numpy:

$ python2.7 -c "import cPickle; cPickle.dumps('\x00' * 2**31)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
SystemError: error return without exception set

We fixed this in Python 3. It may be worthwhile to fix cPickle as well.
History
Date User Action Args
2013-05-02 22:43:32alexandre.vassalottisetrecipients: + alexandre.vassalotti, amaury.forgeotdarc, santoso.wijaya, xuanji, meawoppl
2013-05-02 22:43:31alexandre.vassalottisetmessageid: <1367534611.91.0.716935961774.issue11872@psf.upfronthosting.co.za>
2013-05-02 22:43:31alexandre.vassalottilinkissue11872 messages
2013-05-02 22:43:31alexandre.vassalotticreate