From: Jan Kaliszewski Date: Tue, 8 Oct 2024 12:13:37 +0000 (+0200) Subject: gh-75898: make use of thread more explicit in the "Socket Programming HOWTO" document... X-Git-Tag: v3.14.0a1~146 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9047146e546599325cddda266e420f42fb318e4e;p=thirdparty%2FPython%2Fcpython.git gh-75898: make use of thread more explicit in the "Socket Programming HOWTO" document (#125023) --- diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index 0bbf97da3976..cbc49d15a077 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -100,8 +100,8 @@ mainloop of the web server:: (clientsocket, address) = serversocket.accept() # now do something with the clientsocket # in this case, we'll pretend this is a threaded server - ct = client_thread(clientsocket) - ct.run() + ct = make_client_thread(clientsocket) + ct.start() There's actually 3 general ways in which this loop could work - dispatching a thread to handle ``clientsocket``, create a new process to handle