gh-75898: make use of thread more explicit in the "Socket Programming HOWTO" document (#125023)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user