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 esrever_otua
Recipients esrever_otua, loewis
Date 2008-07-16.04:07:55
SpamBayes Score 0.06279731
Marked as misclassified No
Message-id <1216181276.48.0.352523598879.issue3338@psf.upfronthosting.co.za>
In-reply-to
Content
No, I've just tested /trunk, including r64595, and the Segmentation
fault is still present, eg:

Python 2.6b1+ (trunk:64998, Jul 16 2008, 15:50:22) 
[GCC 4.1.1 20070105 (Red Hat 4.1.1-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.setrecursionlimit(40000)
>>> class rec(object):
...   child = None
...   def __init__(self, counter):
...     if counter > 0:
...       self.child = rec(counter-1)
... 
>>> mychain = rec(2600)
>>> from cPickle import Pickler
>>> from cStringIO import StringIO
>>> stream = StringIO()
>>> p = Pickler(stream, 1)
>>> p.dump(mychain)
Segmentation fault
History
Date User Action Args
2008-07-16 04:07:56esrever_otuasetspambayes_score: 0.0627973 -> 0.06279731
recipients: + esrever_otua, loewis
2008-07-16 04:07:56esrever_otuasetspambayes_score: 0.0627973 -> 0.0627973
messageid: <1216181276.48.0.352523598879.issue3338@psf.upfronthosting.co.za>
2008-07-16 04:07:55esrever_otualinkissue3338 messages
2008-07-16 04:07:55esrever_otuacreate