diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-12-24 22:01:48 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-12-24 22:01:48 (GMT) |
commit | 750909e61823d896f84d44ae25ae6f08a46d387f (patch) | |
tree | b0ac28cc65a8f2d7f991e262f5ae9e335f534523 /Lib/urllib | |
parent | 2552bc06019a2a4cb76a7b9f32994948e7f4d2fa (diff) | |
parent | bd6667aae3ba362342f121acd8c8f78006049e37 (diff) | |
download | cpython-750909e61823d896f84d44ae25ae6f08a46d387f.zip cpython-750909e61823d896f84d44ae25ae6f08a46d387f.tar.gz cpython-750909e61823d896f84d44ae25ae6f08a46d387f.tar.bz2 |
Fix issue16713 - tel url parsing with params
Diffstat (limited to 'Lib/urllib')
-rw-r--r-- | Lib/urllib/parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index 4811759..dc75f8f 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -46,7 +46,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.) |