[Python-checkins] python/dist/src/Lib/test test_httplib.py, 1.14, 1.15

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Tue Sep 14 19:55:24 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12172/Lib/test

Modified Files:
	test_httplib.py 
Log Message:
missed the obvious test case and corresponding fix


Index: test_httplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_httplib.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- test_httplib.py	14 Sep 2004 16:32:02 -0000	1.14
+++ test_httplib.py	14 Sep 2004 17:55:21 -0000	1.15
@@ -119,7 +119,7 @@
             print "Expect InvalidURL"
 
     for hp in ("[fe80::207:e9ff:fe9b]:8000", "www.python.org:80",
-               "www.python.org"):
+               "www.python.org", "[fe80::207:e9ff:fe9b]"):
         try:
             h = httplib.HTTP(hp)
         except httplib.InvalidURL:



More information about the Python-checkins mailing list