gh-75898: make use of thread more explicit in the "Socket Programming HOWTO" document (#125023)

This commit is contained in:
Jan Kaliszewski
2024-10-08 14:13:37 +02:00
committed by GitHub
parent 43ad3b5170
commit 9047146e54

View File

@@ -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