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 martin.panter
Recipients christian.heimes, martin.panter, nsonaniya2010, orsenthil, steven.daprano, xtreak
Date 2019-01-19.07:09:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547881758.9.0.617798565977.issue35748@roundup.psfhosted.org>
In-reply-to
Content
The “urllib.parse” module generally follows RFC 3986, which does not allow a literal backslash in the “userinfo” part:

userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
pct-encoded = "%" HEXDIG HEXDIG
sub-delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "="

The RFC does not allow a backslash in the host name, path, query or fragment either. That is why I said the URL is not valid.
History
Date User Action Args
2019-01-19 07:09:20martin.pantersetrecipients: + martin.panter, orsenthil, christian.heimes, steven.daprano, xtreak, nsonaniya2010
2019-01-19 07:09:18martin.pantersetmessageid: <1547881758.9.0.617798565977.issue35748@roundup.psfhosted.org>
2019-01-19 07:09:18martin.panterlinkissue35748 messages
2019-01-19 07:09:18martin.pantercreate