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 vstinner
Recipients vstinner
Date 2016-04-21.09:51:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461232295.86.0.490339355622.issue26815@psf.upfronthosting.co.za>
In-reply-to
Content
The test:

    def test_dealloc_warn(self):
        ss = ssl.wrap_socket(socket.socket(socket.AF_INET))
        r = repr(ss)
        with self.assertWarns(ResourceWarning) as cm:
            ss = None
            support.gc_collect()   <~~~~~ SIGBUG occurred here
        self.assertIn(r, str(cm.warning.args[0]))
History
Date User Action Args
2016-04-21 09:51:35vstinnersetrecipients: + vstinner
2016-04-21 09:51:35vstinnersetmessageid: <1461232295.86.0.490339355622.issue26815@psf.upfronthosting.co.za>
2016-04-21 09:51:35vstinnerlinkissue26815 messages
2016-04-21 09:51:35vstinnercreate