summaryrefslogtreecommitdiff
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-12-24 14:01:48 -0800
committerSenthil Kumaran <senthil@uthcode.com>2012-12-24 14:01:48 -0800
commit750909e61823d896f84d44ae25ae6f08a46d387f (patch)
treeb0ac28cc65a8f2d7f991e262f5ae9e335f534523 /Lib/urllib
parent2552bc06019a2a4cb76a7b9f32994948e7f4d2fa (diff)
parentbd6667aae3ba362342f121acd8c8f78006049e37 (diff)
downloadcpython-git-750909e61823d896f84d44ae25ae6f08a46d387f.tar.gz
Fix issue16713 - tel url parsing with params
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py
index 48117593e8..dc75f8f28c 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.)