Commit 2ace68bb authored by Guido van Rossum's avatar Guido van Rossum

Added characteristics of shttp, https, and snews.

parent e0527435
...@@ -7,13 +7,22 @@ from string import joinfields, splitfields, find, rfind ...@@ -7,13 +7,22 @@ from string import joinfields, splitfields, find, rfind
# A classification of schemes ('' means apply by default) # A classification of schemes ('' means apply by default)
uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file', uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file',
'https', 'shttp',
'prospero', ''] 'prospero', '']
uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'wais', uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'wais',
'https', 'shttp', 'snews',
'prospero', ''] 'prospero', '']
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais'] non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
uses_params = ['ftp', 'hdl', 'prospero', 'http', ''] 'snews',
uses_query = ['http', 'wais', ''] ]
uses_params = ['ftp', 'hdl', 'prospero', 'http',
'https', 'shttp',
'']
uses_query = ['http', 'wais',
'https', 'shttp',
'']
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais', uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
'https', 'shttp', 'snews',
'file', 'prospero', ''] 'file', 'prospero', '']
# Characters valid in scheme names # Characters valid in scheme names
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment