From: Facundo Batista Date: Thu, 24 May 2007 20:01:59 +0000 (+0000) Subject: Removed the .recv() in the test, is not necessary, and was X-Git-Tag: v2.6a1~1697 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=965fa24e8dfb3af98d107892572a5b2cce677b97;p=python Removed the .recv() in the test, is not necessary, and was causing problems that didn't have anything to do with was actually being tested... --- diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index 93e4d6040e..83610fc4a6 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -557,7 +557,6 @@ def server(evt): pass else: conn.send("1 Hola mundo\n") - conn.recv(200) conn.send("2 No more lines\n") conn.close() finally: