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 matthewkenigsberg
Recipients matthewkenigsberg
Date 2019-06-11.15:45:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560267918.98.0.870769323469.issue37235@roundup.psfhosted.org>
In-reply-to
Content
Was trying to figure out the exact behavior of urljoin. As far as I can tell (see https://bugs.python.org/issue22118) it should follow RFC 3986.  According to the algorithm in 5.2.2, I think this is wrong:
>>> urljoin("ftp://netloc", "http://a/b/../c/d")
'http://a/b/../c/d'

And the .. should get removed.

Might be a separate issue, but at the very least, I think the docs should be updated to describe the exact behavior, or at least more directly state that the behavior defined in RFC 3986 is followed.

Would be happy to write a patch if a change is needed.
History
Date User Action Args
2019-06-11 15:45:19matthewkenigsbergsetrecipients: + matthewkenigsberg
2019-06-11 15:45:18matthewkenigsbergsetmessageid: <1560267918.98.0.870769323469.issue37235@roundup.psfhosted.org>
2019-06-11 15:45:18matthewkenigsberglinkissue37235 messages
2019-06-11 15:45:18matthewkenigsbergcreate