diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-12-24 13:56:54 -0800 |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-12-24 13:56:54 -0800 |
commit | 1974baadc62a6c95db9c96fa482377df98ce36cc (patch) | |
tree | d54cd529e8a11fec4b7376ecb258140be9ff608e /Lib/urlparse.py | |
parent | 332562f44790556cdd4cb909a3a90052a12a6fc0 (diff) | |
download | cpython-git-1974baadc62a6c95db9c96fa482377df98ce36cc.tar.gz |
Fix issue16713 - tel url parsing with params
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 abc53c616a..f370ce3bdc 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -42,7 +42,7 @@ uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'svn', 'svn+ssh', 'sftp','nfs','git', 'git+ssh'] uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap', 'https', 'shttp', 'rtsp', 'rtspu', 'sip', 'sips', - 'mms', '', 'sftp'] + 'mms', '', 'sftp', 'tel'] # These are not actually used anymore, but should stay for backwards # compatibility. (They are undocumented, but have a public-looking name.) |