Checking network input processing by Python for a multi-threaded server

dieter dieter at handshake.de
Thu May 2 00:53:09 EDT 2019


Markus Elfring <Markus.Elfring at web.de> writes:

>> https://docs.python.org/3/library/socketserver.html#asynchronous-mixins
> An example is provided also in this software documentation.
> May I expect that data were completely received from clients and accordingly
> processed by the request handler in the started threads after
> the statement “server.shutdown()” was sucessfully executed?

Python delegates those low level services to the underlaying
network library, which likely will implement the TCP specification.
Thus, check the corresponding documentation to find out.




More information about the Python-list mailing list