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 pitrou, vstinner
Date 2016-03-19.09:39:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1458380369.32.0.376739166969.issue26590@psf.upfronthosting.co.za>
In-reply-to
Content
It's unclear to me if it's needed to call the following code in sock_dealloc():

+    if (PyObject_CallFinalizerFromDealloc((PyObject *)s) < 0)
+        return;

It looks like this code is not needed, since sock_finalize() is called before sock_dealloc().
History
Date User Action Args
2016-03-19 09:39:29vstinnersetrecipients: + vstinner, pitrou
2016-03-19 09:39:29vstinnersetmessageid: <1458380369.32.0.376739166969.issue26590@psf.upfronthosting.co.za>
2016-03-19 09:39:29vstinnerlinkissue26590 messages
2016-03-19 09:39:29vstinnercreate