diff options
author | Facundo Batista <facundobatista@gmail.com> | 2007-05-24 20:01:59 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2007-05-24 20:01:59 (GMT) |
commit | 965fa24e8dfb3af98d107892572a5b2cce677b97 (patch) | |
tree | 93180fdda29ed80f4675399d1ff08a543a3f2ed9 | |
parent | 711a54ebdeb6ec7e099a8a2a1777161ebc13442d (diff) | |
download | cpython-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.py | 1 |
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: |