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 sandro.tosi
Recipients sandro.tosi
Date 2013-01-11.11:29:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357903769.2.0.674766943444.issue16932@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,
as reported at http://mail.python.org/pipermail/docs/2013-January/012375.html urlparse fails to parse URLs without a schema and with a url path, as opposed to what's documented at http://docs.python.org/2/library/urlparse.html?highlight=urlparse#urlparse :

./python -c "from urlparse import urlparse ; print(urlparse('python.org:80/'))"
ParseResult(scheme='python.org', netloc='', path='80/', params='', query='', fragment='')

(that is for 2.7, but the same happens on all the 3.x active branches).

i'm attaching a test to expose this failure.
History
Date User Action Args
2013-01-11 11:29:29sandro.tosisetrecipients: + sandro.tosi
2013-01-11 11:29:29sandro.tosisetmessageid: <1357903769.2.0.674766943444.issue16932@psf.upfronthosting.co.za>
2013-01-11 11:29:28sandro.tosilinkissue16932 messages
2013-01-11 11:29:28sandro.tosicreate