summaryrefslogtreecommitdiffstats
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-01-20 17:24:23 (GMT)
committerGeorg Brandl <georg@python.org>2006-01-20 17:24:23 (GMT)
commit89f35ac180ad4ae667a35b4c8060bee426dda27a (patch)
treeac58d82c7f16658421607dd7b670c61fee52efe3 /Lib/urlparse.py
parent5035c1c55704f83b65aa9e12578ab0a0805e9de3 (diff)
downloadcpython-89f35ac180ad4ae667a35b4c8060bee426dda27a.zip
cpython-89f35ac180ad4ae667a35b4c8060bee426dda27a.tar.gz
cpython-89f35ac180ad4ae667a35b4c8060bee426dda27a.tar.bz2
Bug #1407902: Added support for sftp:// URIs to urlparse.
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index c7c77e3..8b75051 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -9,22 +9,22 @@ __all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
# A classification of schemes ('' means apply by default)
uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
- 'wais', 'file', 'https', 'shttp', 'mms',
- 'prospero', 'rtsp', 'rtspu', '']
+ 'wais', 'file', 'https', 'shttp', 'mms',
+ 'prospero', 'rtsp', 'rtspu', '', 'sftp']
uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
- 'imap', 'wais', 'file', 'mms', 'https', 'shttp',
- 'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '',
- 'svn', 'svn+ssh']
+ 'imap', 'wais', 'file', 'mms', 'https', 'shttp',
+ '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']
uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
- 'https', 'shttp', 'rtsp', 'rtspu', 'sip',
- 'mms', '']
+ 'https', 'shttp', 'rtsp', 'rtspu', 'sip',
+ 'mms', '', 'sftp']
uses_query = ['http', 'wais', 'imap', 'https', 'shttp', 'mms',
- 'gopher', 'rtsp', 'rtspu', 'sip', '']
+ 'gopher', 'rtsp', 'rtspu', 'sip', '']
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news',
- 'nntp', 'wais', 'https', 'shttp', 'snews',
- 'file', 'prospero', '']
+ 'nntp', 'wais', 'https', 'shttp', 'snews',
+ 'file', 'prospero', '']
# Characters valid in scheme names
scheme_chars = ('abcdefghijklmnopqrstuvwxyz'