diff options
author | Georg Brandl <georg@python.org> | 2005-12-15 21:59:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-15 21:59:00 (GMT) |
commit | 07f159de864655d188aa963794cd21592fbebc73 (patch) | |
tree | 45adbeba74c4989783c118c80cd93b6c1296cb75 /Lib | |
parent | 6ee339109f40645dbe04e1f70069c96df9aaa741 (diff) | |
download | cpython-07f159de864655d188aa963794cd21592fbebc73.zip cpython-07f159de864655d188aa963794cd21592fbebc73.tar.gz cpython-07f159de864655d188aa963794cd21592fbebc73.tar.bz2 |
Bug #1378455: a problem of urllib using open_local_file
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/nturl2path.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/nturl2path.py b/Lib/nturl2path.py index 4fb2148..2ced9a9 100644 --- a/Lib/nturl2path.py +++ b/Lib/nturl2path.py @@ -10,6 +10,8 @@ def url2pathname(url): C:\foo\bar\spam.foo """ import string, urllib + # Windows itself uses ":" even in URLs. + url = url.replace(':', '|') if not '|' in url: # No drive specifier, just convert slashes if url[:4] == '////': |