Re: [Python-Dev] doc error in 2.6.2

2009-05-15 Thread Aahz
On Sat, May 16, 2009, Leo Jay wrote: > > There is a syntax error in the client side code of > "SocketServer.UDPServer Example" in > http://docs.python.org/library/socketserver.html: Please follow the directions in http://docs.python.org/bugs.html to report this on bugs.python.org -- that ensures t

[Python-Dev] doc error in 2.6.2

2009-05-15 Thread Leo Jay
There is a syntax error in the client side code of "SocketServer.UDPServer Example" in http://docs.python.org/library/socketserver.html: import socket import sys HOST, PORT = "localhost" data = " ".join(sys.argv[1:]) Obviously, it should be: HOST, PORT = "localhost", -- Leo Jay