From 08c72187efff414cf316630b1cf36a99a5fe3547 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 4 May 2008 09:15:04 +0000 Subject: [PATCH] #2752: wrong meaning of '' for socket host. --- Doc/library/socket.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index f2470066d3..ad7d4fd385 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -808,7 +808,7 @@ The first two examples support IPv4 only. :: # Echo server program import socket - HOST = '' # Symbolic name meaning the local host + HOST = '' # Symbolic name meaning all available interfaces PORT = 50007 # Arbitrary non-privileged port s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind((HOST, PORT)) -- 2.50.1