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 levkivskyi
Recipients gvanrossum, levkivskyi
Date 2016-09-08.17:56:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473357384.15.0.55403815215.issue27985@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like this part is causing a refleak

    def test_do_not_recreate_annotations(self):
        class C:
            del __annotations__
            try: #with self.assertRaises(NameError):
                x: int
            except NameError:
                pass

in test_opcodes

(for both options -- try and with)
History
Date User Action Args
2016-09-08 17:56:24levkivskyisetrecipients: + levkivskyi, gvanrossum
2016-09-08 17:56:24levkivskyisetmessageid: <1473357384.15.0.55403815215.issue27985@psf.upfronthosting.co.za>
2016-09-08 17:56:24levkivskyilinkissue27985 messages
2016-09-08 17:56:24levkivskyicreate