diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-12 01:55:54 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-12 01:55:54 (GMT) |
commit | 071d1ae1362e4444a28c66d9e49e36776efdd3a3 (patch) | |
tree | a0750e900d61f0de4e6d82778fcc9a1daa3191f7 /Lib/urllib.py | |
parent | a5e764873a3e9ec80eea0517ee735d44031e713a (diff) | |
download | cpython-071d1ae1362e4444a28c66d9e49e36776efdd3a3.zip cpython-071d1ae1362e4444a28c66d9e49e36776efdd3a3.tar.gz cpython-071d1ae1362e4444a28c66d9e49e36776efdd3a3.tar.bz2 |
Patch #1678662: ftp.python.org does not exist. So the testcode in urllib.py must use a more
stable FTP.
Will backport.
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 834a42f..0fc9b28 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -1471,7 +1471,7 @@ def test(args=[]): '/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', ] |