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 P0cas
Recipients P0cas
Date 2022-02-27.01:17:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645924644.11.0.346726622626.issue46870@roundup.psfhosted.org>
In-reply-to
Content
>>> print(urlparse('https:\\google.com'))
ParseResult(scheme='https', netloc='', path='\\google.com', params='', query='', fragment='')
>>> print(urlparse('https://google.com@localhost'))
ParseResult(scheme='https', netloc='google.com@localhost', path='', params='', query='', fragment='')
>>>

Perhaps this parser is not able to parse the URL normally.
History
Date User Action Args
2022-02-27 01:17:24P0cassetrecipients: + P0cas
2022-02-27 01:17:24P0cassetmessageid: <1645924644.11.0.346726622626.issue46870@roundup.psfhosted.org>
2022-02-27 01:17:24P0caslinkissue46870 messages
2022-02-27 01:17:24P0cascreate