From: Anthony Baxter Date: Thu, 1 Nov 2001 14:18:29 +0000 (+0000) Subject: backport guido's 1.20 - test sktobj.sendall() X-Git-Tag: v2.1.2c1~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=645ea48314742417880c1929ff272d0d3a9768ba;p=thirdparty%2FPython%2Fcpython.git backport guido's 1.20 - test sktobj.sendall() needed this anyway. --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 10cd5d879545..1880b115fde0 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: