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.

classification
Title: Bug in SocketServer Example
Type: compile error Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, zdwiel
Priority: normal Keywords:

Created on 2009-02-17 20:25 by zdwiel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg82363 - (view) Author: Zach Dwiel (zdwiel) Date: 2009-02-17 20:25
There is a bug in the example code:
http://docs.python.org/library/socketserver.html

The very last example has the line:

print "Server loop running in thread:", t.getName()

should be:

print "Server loop running in thread:", server_thread.getName()

Should I post this somewhere else or is this the right place?
msg82394 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-02-18 00:23
Thanks, fixed in r69728.
History
Date User Action Args
2022-04-11 14:56:45adminsetgithub: 49547
2009-02-18 00:23:13georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg82394
2009-02-17 20:25:28zdwielcreate