diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-09 21:40:30 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-09 21:40:30 +0000 |
commit | ab9ba27dc066adc6423ea137b9481cf524d10ffd (patch) | |
tree | c49709063ec8de0eae358ef462e9fe5faa0c44a0 /Lib/urllib.py | |
parent | c7ca3ffba3d41f24f6f66d40391a044f199785ac (diff) | |
download | cpython-git-ab9ba27dc066adc6423ea137b9481cf524d10ffd.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 2b521b8b0f..82b5fb9a93 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -1353,9 +1353,9 @@ elif os.name == 'nt': # print proxyOverride # now check if we match one of the registry values. for test in proxyOverride: - test = test.replace(".", r"\.") # mask dots - test = test.replace("*", r".*") # change glob sequence - test = test.replace("?", r".") # change glob char + test = test.replace(".", r"\.") # mask dots + test = test.replace("*", r".*") # change glob sequence + test = test.replace("?", r".") # change glob char for val in host: # print "%s <--> %s" %( test, val ) if re.match(test, val, re.I): |