summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllib.py
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-05-24 20:51:19 +0000
committerFacundo Batista <facundobatista@gmail.com>2007-05-24 20:51:19 +0000
commit03f2a85fb5f11e4d89528fcf7373004b9cf16493 (patch)
tree2dd4885103d605956bd2be0fbcc60abd9fcd678a /Lib/test/test_urllib.py
parente7a3e1ad0b8ef2b3f0ac7547bf8272103c50ccc3 (diff)
downloadcpython-03f2a85fb5f11e4d89528fcf7373004b9cf16493.tar.gz
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, :( ).
Diffstat (limited to 'Lib/test/test_urllib.py')
-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 83610fc4a6..c2a6dfd6d7 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: