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 schmir
Recipients facundobatista, schmir
Date 2008-06-23.14:42:11
SpamBayes Score 0.022480816
Marked as misclassified No
Message-id <1214232133.4.0.366608731079.issue3179@psf.upfronthosting.co.za>
In-reply-to
Content
import cPickle

res=[]
for x in range(1,2000):
    res.append(dict(doc=x, similar=[]))

cPickle.dumps(res)


Traceback (most recent call last):
  File "pi.py", line 10, in <module>
cPickle.dumps(res)
RuntimeError: maximum recursion depth exceeded

svn r64471 seems to cause the problematic behaviour.

facundo, you committed that one.
History
Date User Action Args
2008-06-23 14:42:13schmirsetspambayes_score: 0.0224808 -> 0.022480816
recipients: + schmir, facundobatista
2008-06-23 14:42:13schmirsetspambayes_score: 0.0224808 -> 0.0224808
messageid: <1214232133.4.0.366608731079.issue3179@psf.upfronthosting.co.za>
2008-06-23 14:42:12schmirlinkissue3179 messages
2008-06-23 14:42:11schmircreate