diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2009-03-30 21:51:50 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2009-03-30 21:51:50 (GMT) |
commit | 5e95e763e1ba51b9bd4153aa016099e183b05434 (patch) | |
tree | 7014625e7ad52f519804a78ee29588ab04711981 /Lib/urlparse.py | |
parent | e7c9e092b3d339718b0794f6a593a5032b6b9fb5 (diff) | |
download | cpython-5e95e763e1ba51b9bd4153aa016099e183b05434.zip cpython-5e95e763e1ba51b9bd4153aa016099e183b05434.tar.gz cpython-5e95e763e1ba51b9bd4153aa016099e183b05434.tar.bz2 |
Fix for bugs: Issue4675 and Issue4962.
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r-- | Lib/urlparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py index c56d883..5e5d37d 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -14,7 +14,7 @@ uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap', uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'imap', 'wais', 'file', 'mms', 'https', 'shttp', 'snews', 'prospero', 'rtsp', 'rtspu', 'rsync', '', - 'svn', 'svn+ssh', 'sftp'] + 'svn', 'svn+ssh', 'sftp','nfs'] non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais', 'imap', 'snews', 'sip', 'sips'] uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap', |