summaryrefslogtreecommitdiffstats
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2006-04-01 06:11:07 (GMT)
committerFred Drake <fdrake@acm.org>2006-04-01 06:11:07 (GMT)
commit23fd3d49e9750f01730ced166e3880afb126ca19 (patch)
tree02b07311a4952896f47f5886127ceec0d63654d0 /Lib/urlparse.py
parentd8eaa49092f60dd6c5a6ea028e8b406e45594031 (diff)
downloadcpython-23fd3d49e9750f01730ced166e3880afb126ca19.zip
cpython-23fd3d49e9750f01730ced166e3880afb126ca19.tar.gz
cpython-23fd3d49e9750f01730ced166e3880afb126ca19.tar.bz2
add support for the sips: scheme (identical to sip: except for scheme name)
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index 8b75051..8d44853 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -16,12 +16,12 @@ uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '',
'svn', 'svn+ssh', 'sftp']
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news',
- 'telnet', 'wais', 'imap', 'snews', 'sip']
+ 'telnet', 'wais', 'imap', 'snews', 'sip', 'sips']
uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
- 'https', 'shttp', 'rtsp', 'rtspu', 'sip',
+ 'https', 'shttp', 'rtsp', 'rtspu', 'sip', 'sips',
'mms', '', 'sftp']
uses_query = ['http', 'wais', 'imap', 'https', 'shttp', 'mms',
- 'gopher', 'rtsp', 'rtspu', 'sip', '']
+ 'gopher', 'rtsp', 'rtspu', 'sip', 'sips', '']
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news',
'nntp', 'wais', 'https', 'shttp', 'snews',
'file', 'prospero', '']