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 cyhawk
Recipients alexandre.vassalotti, bkline, cyhawk, facundobatista, jcea, loewis, schmir
Date 2008-06-22.22:35:53
SpamBayes Score 0.0006393163
Marked as misclassified No
Message-id <1214174155.57.0.427454621364.issue2702@psf.upfronthosting.co.za>
In-reply-to
Content
I have just quickly pasted it into an interpreter.

Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> class Node(object):
...     pass
...
>>> nodes = [Node() for i in range(500)]
>>> for n in nodes:
...     n.connections = list(nodes)
...     n.connections.remove(n)
...
>>> import cPickle
>>> s = cPickle.dumps( n )

After this line, the interpreter terminated without any further output
(no Python exception and no Windows "General Exception" message box either).

Is it sufficient, or would you prefer me to run the test properly?
History
Date User Action Args
2008-06-22 22:35:56cyhawksetspambayes_score: 0.000639316 -> 0.0006393163
recipients: + cyhawk, loewis, facundobatista, jcea, bkline, alexandre.vassalotti, schmir
2008-06-22 22:35:55cyhawksetspambayes_score: 0.000639316 -> 0.000639316
messageid: <1214174155.57.0.427454621364.issue2702@psf.upfronthosting.co.za>
2008-06-22 22:35:54cyhawklinkissue2702 messages
2008-06-22 22:35:53cyhawkcreate