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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, orsenthil, pitrou
Date 2012-12-18.15:36:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355844963.75.0.80698160262.issue16713@psf.upfronthosting.co.za>
In-reply-to
Content
I don't know whether 'tel' is a common scheme, but it's easy to add it to urlparse from the outside:

>>> urlparse.uses_param.append('tel')
>>> urlparse.urlparse('tel:7042;phone-context=example.com')
ParseResult(scheme='tel', netloc='', path='7042', params='phone-context=example.com', query='', fragment='')
History
Date User Action Args
2012-12-18 15:36:03amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, orsenthil, pitrou
2012-12-18 15:36:03amaury.forgeotdarcsetmessageid: <1355844963.75.0.80698160262.issue16713@psf.upfronthosting.co.za>
2012-12-18 15:36:03amaury.forgeotdarclinkissue16713 messages
2012-12-18 15:36:03amaury.forgeotdarccreate