]> granicus.if.org Git - python/commit
Add socket finalizer
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 21 Mar 2016 15:36:48 +0000 (16:36 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 21 Mar 2016 15:36:48 +0000 (16:36 +0100)
commit19a8e844e455a26419f35bd4b57d4a7d19b61b69
tree860491b485c505f4a95898dadc7c5abc482c5760
parent322bc12c3142e7816dd34c6c3085929ab29d3ed8
Add socket finalizer

Issue #26590: Implement a safe finalizer for the _socket.socket type. It now
releases the GIL to close the socket. Use PyErr_ResourceWarning() to raise the
ResourceWarning to pass the socket object to the warning logger, to get the
traceback where the socket was created (allocated).
Misc/NEWS
Modules/socketmodule.c