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 eltoder
Recipients eltoder, pitrou, serhiy.storchaka
Date 2015-03-20.22:00:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426888814.78.0.88443470005.issue23726@psf.upfronthosting.co.za>
In-reply-to
Content
Agreed, but this is not new. This works without my change:

>>> class Tuple(tuple):
...   __slots__ = ()
...   def __repr__(self): return 'Imma tuple!'                                                    
... 
>>> ().__class__ = Tuple
>>> ()
Imma tuple!
History
Date User Action Args
2015-03-20 22:00:14eltodersetrecipients: + eltoder, pitrou, serhiy.storchaka
2015-03-20 22:00:14eltodersetmessageid: <1426888814.78.0.88443470005.issue23726@psf.upfronthosting.co.za>
2015-03-20 22:00:14eltoderlinkissue23726 messages
2015-03-20 22:00:14eltodercreate