commit | cf3527b705516ffea6d5f5810bd8b80076101415 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Tue Jun 03 17:58:31 1997 +0000 |
committer | Fred Drake <fdrake@acm.org> | Tue Jun 03 17:58:31 1997 +0000 |
tree | 06a32d7417b4f09df361148980b22f756c01f5d9 | |
parent | ca0f88d887852baaee6e070244b65338be301191 [diff] |
socket_type --> SocketType
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 1fe8c41..c61a2c8 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py
@@ -65,7 +65,7 @@ ): missing_ok(optional) -socktype = socket.socket_type +socktype = socket.SocketType hostname = socket.gethostname() ip = socket.gethostbyname(hostname) hname, aliases, ipaddrs = socket.gethostbyaddr(ip)