diff options
author | Facundo Batista <facundobatista@gmail.com> | 2007-05-24 20:51:19 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2007-05-24 20:51:19 (GMT) |
commit | 62c744e7d17421268c7ccbbbce8065fe37186a64 (patch) | |
tree | 63c1ac67fbce71354921211e8a115f4f62c989f7 | |
parent | 965fa24e8dfb3af98d107892572a5b2cce677b97 (diff) | |
download | cpython-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.py | 1 |
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: |