An asyncio example

Marko Rauhamaa marko at pacujo.net
Fri Jul 3 11:14:21 EDT 2015


>> 1) is there a way to close just one direction of the connection?
>
> No. SOCK_STREAM sockets are always bidirectional.

socket.shutdown(socket.SHUT_WR) does the trick.

I think the asyncio.StreamWriter.write_eof() is the high-level
equivalent.


Marko



More information about the Python-list mailing list