summaryrefslogtreecommitdiff
path: root/Lib/urllib/parse.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-12-24 14:00:20 -0800
committerSenthil Kumaran <senthil@uthcode.com>2012-12-24 14:00:20 -0800
commited30199e7836ff52a101a9ea3a2b31f8455a85a8 (patch)
tree14b7178ceb041dd0271badb2d860fec4f0adb3cb /Lib/urllib/parse.py
parent08bab072917c2eeea3a0f3da0546d57cf5072bcf (diff)
downloadcpython-git-ed30199e7836ff52a101a9ea3a2b31f8455a85a8.tar.gz
Fix issue16713 - tel url parsing with params
Diffstat (limited to 'Lib/urllib/parse.py')
-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.)