From 965fa24e8dfb3af98d107892572a5b2cce677b97 Mon Sep 17 00:00:00 2001 From: Facundo Batista Date: Thu, 24 May 2007 20:01:59 +0000 Subject: [PATCH] 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... --- Lib/test/test_urllib.py | 1 - 1 file changed, 1 deletion(-) 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: -- 2.40.0