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

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


Author: facundo.batista
Date: Thu May 24 22:01:59 2007
New Revision: 55563

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

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...

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:01:59 2007
@@ -557,7 +557,6 @@
         pass
     else:
         conn.send("1 Hola mundo\n")
-        conn.recv(200)
         conn.send("2 No more lines\n")
         conn.close()
     finally:


More information about the Python-checkins mailing list