From: Fred Drake Date: Tue, 3 Jun 1997 17:58:31 +0000 (+0000) Subject: socket_type --> SocketType X-Git-Tag: v1.5a3~362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf3527b705516ffea6d5f5810bd8b80076101415;p=thirdparty%2FPython%2Fcpython.git socket_type --> SocketType --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 1fe8c4173097..c61a2c8221b7 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -65,7 +65,7 @@ for optional in ("AF_UNIX", ): missing_ok(optional) -socktype = socket.socket_type +socktype = socket.SocketType hostname = socket.gethostname() ip = socket.gethostbyname(hostname) hname, aliases, ipaddrs = socket.gethostbyaddr(ip)