[issue17565] segfaults during serialization

2013-05-02 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: If you are pickling large objects, you're likely hitting issue #11872. We fixed most 64-bit issues in Python 3, so upgrading might be solution if possible. Since the particular bug you are hitting cannot be reproduced with your test case, I am closing th

[issue17565] segfaults during serialization

2013-03-28 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue17565] segfaults during serialization

2013-03-28 Thread Daniele Raimondi
Daniele Raimondi added the comment: I'll try ASAP. unfortunately I'm pretty busy trying to overcome this problem On Thu, Mar 28, 2013 at 1:51 AM, STINNER Victor wrote: > > STINNER Victor added the comment: > > ModelSettings.py requires globalSettings which is not attached. > > -- > nosy

[issue17565] segfaults during serialization

2013-03-27 Thread STINNER Victor
STINNER Victor added the comment: ModelSettings.py requires globalSettings which is not attached. -- nosy: +haypo ___ Python tracker ___ _

[issue17565] segfaults during serialization

2013-03-27 Thread Benjamin Peterson
Benjamin Peterson added the comment: Please provide a self-contained explain, we can reproduce. -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue17565] segfaults during serialization

2013-03-27 Thread Daniele Raimondi
New submission from Daniele Raimondi: pickle and cPickle cause really often segfaults when dumping or loading user defined classes. It happens with python 2.7.3 on 64bits architecture, with any protocol (0,1,2). I attach an example of class afflicted by this problem. Solutions anyone?