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 <rep...@bugs.python.org>
<http://bugs.python.org/issue16713>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to