[Python-checkins] r54279 - python/branches/release25-maint/Lib/urllib.py

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


Author: collin.winter
Date: Mon Mar 12 02:57:49 2007
New Revision: 54279

Modified:
   python/branches/release25-maint/Lib/urllib.py
Log:
Patch #1678662: ftp.python.org does not exist. So the testcode in urllib.py must use a more
stable FTP.
Backported from r54278.


Modified: python/branches/release25-maint/Lib/urllib.py
==============================================================================
--- python/branches/release25-maint/Lib/urllib.py	(original)
+++ python/branches/release25-maint/Lib/urllib.py	Mon Mar 12 02:57:49 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