[issue45134] Protocol dealloc not called if Server is closed

2021-09-18 Thread Mark
Change by Mark : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45134] Protocol dealloc not called if Server is closed

2021-09-07 Thread Mark
New submission from Mark : If I create_server server_coro = loop.create_server( lambda: self._protocol_factory(self), sock=sock, ssl=ssl) server = loop.run_until_complete(server_coro) Then connect and disconnect a client the protocol connection lost and dealloc are called. If howeve