From: Georg Brandl Date: Mon, 24 Aug 2009 17:22:05 +0000 (+0000) Subject: #6718: fix example. X-Git-Tag: v2.7a1~624 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8ddbece0f8beaa5d8e13af9d7fd71bf49ddd3e4;p=python #6718: fix example. --- diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index d2bbba446c..2ed4935a14 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -464,7 +464,7 @@ This is the client side:: 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