2016-05-23 18:19 GMT+02:00 Jack Bates <x21...@nottheoilrig.com>:
> Can you help me understand why _SelectorTransport.__del__()
> is called before _SSLProtocolTransport.__del__()?

Are you using the debug mode of asyncio?
https://docs.python.org/dev/library/asyncio-dev.html#debug-mode-of-asyncio

asyncio now emits ResourceWarning warnings when transports are not
closed explicitly. It looks like you forgot to close explicitly a
transport.

> Fatal write error on socket transport

By the way, do you know why the write failed? Did you close manually
the socket without notifying asyncio?

Reply via email to