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 jek
Recipients jek
Date 2008-02-07.22:35:30
SpamBayes Score 0.07515287
Marked as misclassified No
Message-id <1202423731.9.0.782285992548.issue2045@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.5.1 (r251:54863, May 23 2007, 16:25:53) 
[GCC 4.1.1 20070105 (Red Hat 4.1.1-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from collections import defaultdict
>>> class sub(defaultdict):
...     def __init__(self):
...         self.default_factory = self._factory
...     def _factory(self):
...         return []
... 
>>> s = sub()
>>> repr(s)
Segmentation fault
History
Date User Action Args
2008-02-07 22:35:32jeksetspambayes_score: 0.0751529 -> 0.07515287
recipients: + jek
2008-02-07 22:35:31jeksetspambayes_score: 0.0751529 -> 0.0751529
messageid: <1202423731.9.0.782285992548.issue2045@psf.upfronthosting.co.za>
2008-02-07 22:35:31jeklinkissue2045 messages
2008-02-07 22:35:30jekcreate