diff options
author | Guido van Rossum <guido@python.org> | 1996-05-28 23:10:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-28 23:10:02 (GMT) |
commit | 5feb54c461e51d0dd1120a84001bc5a516f8d002 (patch) | |
tree | 378c05c053dc25e9dda26683fe80fb78cff8bcd3 /Lib/urlparse.py | |
parent | 3c998825bd0cfb029bfa0ad274d1b96d8c30cd14 (diff) | |
download | cpython-5feb54c461e51d0dd1120a84001bc5a516f8d002.zip cpython-5feb54c461e51d0dd1120a84001bc5a516f8d002.tar.gz cpython-5feb54c461e51d0dd1120a84001bc5a516f8d002.tar.bz2 |
added hdl protocol properties
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r-- | Lib/urlparse.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 08722b1..571de46 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -9,10 +9,10 @@ uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file', 'prospero', ''] uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'wais', 'prospero', ''] -non_hierarchical = ['gopher', 'mailto', 'news', 'telnet', 'wais'] -uses_params = ['ftp', 'prospero', 'http', ''] +non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais'] +uses_params = ['ftp', 'hdl', 'prospero', 'http', ''] uses_query = ['http', 'wais', ''] -uses_fragment = ['ftp', 'http', 'gopher', 'news', 'nntp', 'wais', +uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais', 'file', 'prospero', ''] # Characters valid in scheme names |