summaryrefslogtreecommitdiff
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-01-06 12:30:53 +0000
committerRaymond Hettinger <python@rcn.com>2003-01-06 12:30:53 +0000
commit4a97bb51a0b89619a7c6bb09226fd236f4c86791 (patch)
tree3e9458db0fe297d72761b4c0f65148f969077b2d /Lib/urlparse.py
parent3ec3d3c95f69d013925b4cb7d648db568e20d193 (diff)
downloadcpython-4a97bb51a0b89619a7c6bb09226fd236f4c86791.tar.gz
Used dictionaries rather than lists for membership testing.
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index b8f747fbec..171092e92e 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -8,26 +8,26 @@ __all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
"urlsplit", "urlunsplit"]
# A classification of schemes ('' means apply by default)
-uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap', 'wais', 'file',
+uses_relative = dict.fromkeys(['ftp', 'http', 'gopher', 'nntp', 'imap', 'wais', 'file',
'https', 'shttp',
- 'prospero', 'rtsp', 'rtspu', '']
-uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'imap', 'wais',
+ 'prospero', 'rtsp', 'rtspu', ''])
+uses_netloc = dict.fromkeys(['ftp', 'http', 'gopher', 'nntp', 'telnet', 'imap', 'wais',
'file',
'https', 'shttp', 'snews',
- 'prospero', 'rtsp', 'rtspu', '']
-non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
+ 'prospero', 'rtsp', 'rtspu', ''])
+non_hierarchical = dict.fromkeys(['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
'imap', 'snews', 'sip',
- ]
-uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
+ ])
+uses_params = dict.fromkeys(['ftp', 'hdl', 'prospero', 'http', 'imap',
'https', 'shttp', 'rtsp', 'rtspu', 'sip',
- '']
-uses_query = ['http', 'wais', 'imap',
+ ''])
+uses_query = dict.fromkeys(['http', 'wais', 'imap',
'https', 'shttp',
'gopher', 'rtsp', 'rtspu', 'sip',
- '']
-uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
+ ''])
+uses_fragment = dict.fromkeys(['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
'https', 'shttp', 'snews',
- 'file', 'prospero', '']
+ 'file', 'prospero', ''])
# Characters valid in scheme names
scheme_chars = ('abcdefghijklmnopqrstuvwxyz'