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 Rob Church
Recipients Rob Church
Date 2016-03-16.21:01:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1458162076.53.0.59602489258.issue26572@psf.upfronthosting.co.za>
In-reply-to
Content
>>> urlparse('http://user:pass?word@example.com/path?query')
ParseResult(scheme='http', netloc='user:pass', path='', params='', query='word@example.com/path?query', fragment='')

Expected output is:

ParseResult(scheme='http', netloc='user:pass?word@example.com', path='/path', params='', query='query', fragment='')
History
Date User Action Args
2016-03-16 21:01:16Rob Churchsetrecipients: + Rob Church
2016-03-16 21:01:16Rob Churchsetmessageid: <1458162076.53.0.59602489258.issue26572@psf.upfronthosting.co.za>
2016-03-16 21:01:16Rob Churchlinkissue26572 messages
2016-03-16 21:01:16Rob Churchcreate