diff options
author | Guido van Rossum <guido@python.org> | 2001-10-29 07:14:10 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-29 07:14:10 +0000 |
commit | cb656882185bf94290967c33b5c13f3ae47887b5 (patch) | |
tree | ae45b48eb328f08d78543a0a5df1c8dfdad88d64 /Lib/test/test_socket.py | |
parent | b2c763fed22f89b6f7d1cee67582026b763d8cee (diff) | |
download | cpython-git-cb656882185bf94290967c33b5c13f3ae47887b5.tar.gz |
Test sendall().
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 10cd5d8795..1880b115fd 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -124,7 +124,7 @@ try: break if verbose: print 'received:', data - conn.send(data) + conn.sendall(data) conn.close() else: try: |