diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_socket.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 83135f9..92b9336 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -97,7 +97,7 @@ try: if not canfork or os.fork(): # parent is server s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - s.bind((hostname, PORT)) + s.bind(("127.0.0.1", PORT)) s.listen(1) if verbose: print 'parent accepting' @@ -133,7 +133,7 @@ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if verbose: print 'child connecting' - s.connect((hostname, PORT)) + s.connect(("127.0.0.1", PORT)) msg = 'socket test' s.send(msg) data = s.recv(1024) |