[Python-checkins] r55564 - python/trunk/Lib/test/test_urllib.py

facundo.batista python-checkins at python.org
Thu May 24 22:51:22 CEST 2007


Author: facundo.batista
Date: Thu May 24 22:51:19 2007
New Revision: 55564

Modified:
   python/trunk/Lib/test/test_urllib.py
Log:

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, :( ).


Modified: python/trunk/Lib/test/test_urllib.py
==============================================================================
--- python/trunk/Lib/test/test_urllib.py	(original)
+++ python/trunk/Lib/test/test_urllib.py	Thu May 24 22:51:19 2007
@@ -557,6 +557,7 @@
         pass
     else:
         conn.send("1 Hola mundo\n")
+        conn.recv(13)
         conn.send("2 No more lines\n")
         conn.close()
     finally:


More information about the Python-checkins mailing list