summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-05-24 20:01:59 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2007-05-24 20:01:59 (GMT)
commit965fa24e8dfb3af98d107892572a5b2cce677b97 (patch)
tree93180fdda29ed80f4675399d1ff08a543a3f2ed9
parent711a54ebdeb6ec7e099a8a2a1777161ebc13442d (diff)
downloadcpython-965fa24e8dfb3af98d107892572a5b2cce677b97.zip
cpython-965fa24e8dfb3af98d107892572a5b2cce677b97.tar.gz
cpython-965fa24e8dfb3af98d107892572a5b2cce677b97.tar.bz2
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...
-rw-r--r--Lib/test/test_urllib.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index 93e4d60..83610fc 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: