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 begnac
Recipients asvetlov, begnac, yselivanov
Date 2021-03-21.07:11:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
Hello,

Even after close()ing, asyncio.selector_events._SelectorSocketTransport keeps a reference to itself via self._read_ready_cb.

should probably add

def close(self):
    super().close()
    self._read_ready_cb = None

Cheers !
Itaï.
History
Date User Action Args
2021-03-21 07:11:11begnacsetrecipients: + begnac, asvetlov, yselivanov
2021-03-21 07:11:11begnacsetmessageid: <[email protected]>
2021-03-21 07:11:10begnaclinkissue43579 messages
2021-03-21 07:11:10begnaccreate