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 serhiy.storchaka
Recipients benjamin.peterson, brett.cannon, georg.brandl, larry, pitrou, rhettinger, serhiy.storchaka, skrah, vstinner
Date 2014-01-30.12:58:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1978530.Utl7BbEJ05@raxxla>
In-reply-to <1391056100.56.0.572973953237.issue20440@psf.upfronthosting.co.za>
Content
> Unless some known bugs are being fixed, this should be 3.4 only.

For example here is a bug very similar to a bug fixed in issue16447.

class Nasty(str):
    def __del__(self):
        C.__qualname__ = "other"

class C:
    pass

C.__qualname__ = Nasty("abc")
C.__qualname__ = "normal"
C.__qualname__ = "normal"
History
Date User Action Args
2014-01-30 12:58:59serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, georg.brandl, rhettinger, pitrou, vstinner, larry, benjamin.peterson, skrah
2014-01-30 12:58:59serhiy.storchakalinkissue20440 messages
2014-01-30 12:58:59serhiy.storchakacreate