From e8ddbece0f8beaa5d8e13af9d7fd71bf49ddd3e4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 24 Aug 2009 17:22:05 +0000 Subject: [PATCH] #6718: fix example. --- Doc/library/socketserver.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index d2bbba446cc..2ed4935a140 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