summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-05-24 20:51:19 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2007-05-24 20:51:19 (GMT)
commit62c744e7d17421268c7ccbbbce8065fe37186a64 (patch)
tree63c1ac67fbce71354921211e8a115f4f62c989f7
parent965fa24e8dfb3af98d107892572a5b2cce677b97 (diff)
downloadcpython-62c744e7d17421268c7ccbbbce8065fe37186a64.zip
cpython-62c744e7d17421268c7ccbbbce8065fe37186a64.tar.gz
cpython-62c744e7d17421268c7ccbbbce8065fe37186a64.tar.bz2
Let's see if reading exactly what is written allow this live
test to pass (now I know why there were so few tests in ftp, http, etc, :( ).
-rw-r--r--Lib/test/test_urllib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index 83610fc..c2a6dfd 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -557,6 +557,7 @@ def server(evt):
pass
else:
conn.send("1 Hola mundo\n")
+ conn.recv(13)
conn.send("2 No more lines\n")
conn.close()
finally: