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 meawoppl
Recipients meawoppl
Date 2011-04-19.08:06:00
SpamBayes Score 3.9257875e-11
Marked as misclassified No
Message-id <1303200362.9.0.587954333494.issue11872@psf.upfronthosting.co.za>
In-reply-to
Content
from numpy import *
import cPickle

a = zeros((300000, 1000)) 
f = open("test.pkl", "w") 
cPickle.dump(a, f)

------
SystemError: Traceback (most recent call last)

/home/kddcup/code/matt/svd-projection/take5/<ipython console> in <module>()

SystemError?: error return without exception set

Or using the .dump function:

a.dump("test.pkl")

SystemError? Traceback (most recent call last)

/home/kddcup/code/matt/svd-projection/take5/<ipython console> in <module>()

SystemError: NULL result without error in PyObject?_Call

I am not sure if this is a numpy or Pickle/cPickle glitch. In either case, even if this is a semi-known behavior, a more instructive error message would certainly help. I think the problem only happens for arrays larger than 2**(32-1) bytes but I would have to experiment more to be sure.
History
Date User Action Args
2011-04-19 08:06:02meawopplsetrecipients: + meawoppl
2011-04-19 08:06:02meawopplsetmessageid: <1303200362.9.0.587954333494.issue11872@psf.upfronthosting.co.za>
2011-04-19 08:06:00meawoppllinkissue11872 messages
2011-04-19 08:06:00meawopplcreate