[issue11872] cPickle gives strange error for large objects.

2015-11-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> out of date stage: needs patch -> resolved status: pending -> closed ___ Python tracker ___ _

[issue11872] cPickle gives strange error for large objects.

2015-07-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Is this issue still actual? -- nosy: +serhiy.storchaka status: open -> pending ___ Python tracker ___

[issue11872] cPickle gives strange error for large objects.

2013-05-02 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: 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 "", line 1, in SystemError: error return without exception set We fixed this

[issue11872] cPickle gives strange error for large objects.

2011-04-26 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- nosy: +santa4nt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11872] cPickle gives strange error for large objects.

2011-04-26 Thread Xuanji Li
Changes by Xuanji Li : -- nosy: +xuanji ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue11872] cPickle gives strange error for large objects.

2011-04-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: See also issue11564 and issue9614. -- nosy: +amaury.forgeotdarc ___ Python tracker ___ ___ Py

[issue11872] cPickle gives strange error for large objects.

2011-04-19 Thread MattyG
New submission from MattyG : from numpy import * import cPickle a = zeros((30, 1000)) f = open("test.pkl", "w") cPickle.dump(a, f) -- SystemError: Traceback (most recent call last) /home/kddcup/code/matt/svd-projection/take5/ in () SystemError?: error return without exception set O