[issue5297] Bug in SocketServer Example

2009-02-17 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r69728. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Py

[issue5297] Bug in SocketServer Example

2009-02-17 Thread Zach Dwiel
New submission from Zach Dwiel : 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 po