This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients orsenthil, pitrou
Date 2012-12-18.14:30:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355841024.52.0.600019146787.issue16713@psf.upfronthosting.co.za>
In-reply-to
Content
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='')
History
Date User Action Args
2012-12-18 14:30:24pitrousetrecipients: + pitrou, orsenthil
2012-12-18 14:30:24pitrousetmessageid: <1355841024.52.0.600019146787.issue16713@psf.upfronthosting.co.za>
2012-12-18 14:30:23pitroulinkissue16713 messages
2012-12-18 14:30:22pitroucreate