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 jackdied
Recipients benrg, jackdied, r.david.murray, terry.reedy
Date 2010-06-04.23:35:07
SpamBayes Score 0.0008380252
Marked as misclassified No
Message-id <1275694510.34.0.133890958993.issue8847@psf.upfronthosting.co.za>
In-reply-to
Content
I can't reproduce on 3k trunk with Ubuntu 10.04, gcc 4.4.3

namedtuples are just a subclass of tuple with only two dunder methods defined (a plain __new__ with empty __slots__).  Can you provoke the same behavior with plain tuples, or a subclass of tuple that looks like one of these?

class Crasher(tuple): pass

class Crasher(tuple):
  __slots__ = ()

class Crasher(tuple):
  def __new__(cls,): return tuple.__new__(cls,)
  __slots__ = ()
History
Date User Action Args
2010-06-04 23:35:10jackdiedsetrecipients: + jackdied, terry.reedy, r.david.murray, benrg
2010-06-04 23:35:10jackdiedsetmessageid: <1275694510.34.0.133890958993.issue8847@psf.upfronthosting.co.za>
2010-06-04 23:35:08jackdiedlinkissue8847 messages
2010-06-04 23:35:07jackdiedcreate