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月12日.12:37:08 |
| SpamBayes Score | 0.0036160098 |
| Marked as misclassified | No |
| Message-id | <1215866230.33.0.725151205644.issue3338@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Happens with Python 2.5.2 on 64bit also:
Python 2.5.2 (r252:60911, Apr 21 2008, 11:17:30)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform
>>> platform.architecture()
('64bit', '')
>>> from cPickle import Pickler
>>> class rec:
... child = None
... def __init__(self, counter):
... if counter > 0:
... self.child = rec(counter-1)
...
>>> import sys
>>> sys.setrecursionlimit(10000)
>>> mychain = rec(2600)
>>> from cStringIO import StringIO
>>> stream = StringIO()
>>> p = Pickler(stream, 1)
>>> res = p.dump(mychain)
Segmentation fault |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008年07月12日 12:37:10 | esrever_otua | set | spambayes_score: 0.00361601 -> 0.0036160098 recipients: + esrever_otua, loewis |
| 2008年07月12日 12:37:10 | esrever_otua | set | spambayes_score: 0.00361601 -> 0.00361601 messageid: <1215866230.33.0.725151205644.issue3338@psf.upfronthosting.co.za> |
| 2008年07月12日 12:37:09 | esrever_otua | link | issue3338 messages |
| 2008年07月12日 12:37:08 | esrever_otua | create | |