[Python-checkins] r54278 - python/trunk/Lib/urllib.py

collin.winter python-checkins at python.org
Mon Mar 12 02:55:57 CET 2007


Author: collin.winter
Date: Mon Mar 12 02:55:54 2007
New Revision: 54278

Modified:
   python/trunk/Lib/urllib.py
Log:
Patch #1678662: ftp.python.org does not exist. So the testcode in urllib.py must use a more
stable FTP.
Will backport.


Modified: python/trunk/Lib/urllib.py
==============================================================================
--- python/trunk/Lib/urllib.py	(original)
+++ python/trunk/Lib/urllib.py	Mon Mar 12 02:55:54 2007
@@ -1471,7 +1471,7 @@
             '/etc/passwd',
             'file:/etc/passwd',
             'file://localhost/etc/passwd',
-            'ftp://ftp.python.org/pub/python/README',
+            'ftp://ftp.gnu.org/pub/README',
 ##          'gopher://gopher.micro.umn.edu/1/',
             'http://www.python.org/index.html',
             ]


More information about the Python-checkins mailing list