diff options
author | Guido van Rossum <guido@python.org> | 2000-03-24 20:54:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-24 20:54:29 (GMT) |
commit | 7e57bc4a5b4a05329c4bbdacd7552e2e4f898e04 (patch) | |
tree | 8ca9219f2fbae9af2d5262d0f176662b7bfda570 /Lib/test | |
parent | 5ba3c843db445c0b8d35bc3823f1b402c91ebe08 (diff) | |
download | cpython-7e57bc4a5b4a05329c4bbdacd7552e2e4f898e04.zip cpython-7e57bc4a5b4a05329c4bbdacd7552e2e4f898e04.tar.gz cpython-7e57bc4a5b4a05329c4bbdacd7552e2e4f898e04.tar.bz2 |
Fix the test so that connect() and bind() are called with a single
argument: a (host, port) tuple.
Like multi-arg append(), multi-arg connect() and bind() may be ruled out!
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 772b86b..83135f9 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((hostname, 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((hostname, PORT)) msg = 'socket test' s.send(msg) data = s.recv(1024) |