[Python-checkins] r74547 - python/trunk/Doc/library/socketserver.rst

georg.brandl python-checkins at python.org
Mon Aug 24 19:22:05 CEST 2009


Author: georg.brandl
Date: Mon Aug 24 19:22:05 2009
New Revision: 74547

Log:
#6718: fix example.

Modified:
   python/trunk/Doc/library/socketserver.rst

Modified: python/trunk/Doc/library/socketserver.rst
==============================================================================
--- python/trunk/Doc/library/socketserver.rst	(original)
+++ python/trunk/Doc/library/socketserver.rst	Mon Aug 24 19:22:05 2009
@@ -464,7 +464,7 @@
    import socket
    import sys
 
-   HOST, PORT = "localhost"
+   HOST, PORT = "localhost", 9999
    data = " ".join(sys.argv[1:])
 
    # SOCK_DGRAM is the socket type to use for UDP sockets


More information about the Python-checkins mailing list