From: Fred Drake Date: Wed, 3 May 2000 19:40:32 +0000 (+0000) Subject: Someone found the examples of poor practice on socket addresses! X-Git-Tag: v2.0b1~1860 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d69c0e440ddb3f6fdcc54ba6acc700e4d0c9f99;p=thirdparty%2FPython%2Fcpython.git Someone found the examples of poor practice on socket addresses! Spotted by Greg Kochanski . --- diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex index c8456156a323..5fe6b1aeb4a7 100644 --- a/Doc/lib/libsocket.tex +++ b/Doc/lib/libsocket.tex @@ -413,7 +413,7 @@ from socket import * HOST = '' # Symbolic name meaning the local host PORT = 50007 # Arbitrary non-privileged server s = socket(AF_INET, SOCK_STREAM) -s.bind(HOST, PORT) +s.bind((HOST, PORT)) s.listen(1) conn, addr = s.accept() print 'Connected by', addr @@ -430,7 +430,7 @@ from socket import * HOST = 'daring.cwi.nl' # The remote host PORT = 50007 # The same port as used by the server s = socket(AF_INET, SOCK_STREAM) -s.connect(HOST, PORT) +s.connect((HOST, PORT)) s.send('Hello, world') data = s.recv(1024) s.close() @@ -438,5 +438,5 @@ print 'Received', `data` \end{verbatim} \begin{seealso} -\seemodule{SocketServer}{classes that simplify writing network servers} + \seemodule{SocketServer}{classes that simplify writing network servers} \end{seealso}