[New-bugs-announce] [issue16713] "tel" URIs should support params

Antoine Pitrou report at bugs.python.org
Tue Dec 18 15:30:24 CET 2012


New submission from Antoine Pitrou:

RFC 3966 (http://tools.ietf.org/html/rfc3966) defines the tel URI and its parameters. However, urlparse / urllib.parse doesn't recognize "tel" URIs as taking parameters:

>>> urlparse.urlparse('tel:7042;phone-context=example.com')
ParseResult(scheme='tel', netloc='', path='7042;phone-context=example.com', params='', query='', fragment='')

----------
components: Library (Lib)
messages: 177692
nosy: orsenthil, pitrou
priority: normal
severity: normal
stage: needs patch
status: open
title: "tel" URIs should support params
type: behavior
versions: Python 2.7, Python 3.2, Python 3.3, Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16713>
_______________________________________


More information about the New-bugs-announce mailing list