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
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