This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author apoplexy
Recipients apoplexy, docs@python
Date 2017-10-06.15:53:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507305189.16.0.213398074469.issue31717@psf.upfronthosting.co.za>
In-reply-to
Content
Very small, but,

https://docs.python.org/2/howto/sockets.html
https://docs.python.org/3/howto/sockets.html

have :
while True:
    # accept connections from outside
    (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()

and for some reason I really want it to be ct.start()
History
Date User Action Args
2017-10-06 15:53:09apoplexysetrecipients: + apoplexy, docs@python
2017-10-06 15:53:09apoplexysetmessageid: <1507305189.16.0.213398074469.issue31717@psf.upfronthosting.co.za>
2017-10-06 15:53:09apoplexylinkissue31717 messages
2017-10-06 15:53:08apoplexycreate