[issue25403] urllib.parse.urljoin is broken in python 3.5

2021-12-02 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25403] urllib.parse.urljoin is broken in python 3.5

2021-12-01 Thread Irit Katriel
Irit Katriel added the comment: See also 37235, 40594. -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing

[issue25403] urllib.parse.urljoin is broken in python 3.5

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25403] urllib.parse.urljoin is broken in python 3.5

2016-01-03 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___

[issue25403] urllib.parse.urljoin is broken in python 3.5

2015-10-15 Thread Wei Wu
Wei Wu added the comment: It's a change made in 3.5 that resolution of relative URLs confirms to the RFC 3986. See https://bugs.python.org/issue22118 for details. -- nosy: +kilowu ___ Python tracker

[issue25403] urllib.parse.urljoin is broken in python 3.5

2015-10-15 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +berker.peksag, martin.panter, orsenthil ___ Python tracker ___

[issue25403] urllib.parse.urljoin is broken in python 3.5

2015-10-15 Thread STINNER Victor
STINNER Victor added the comment: See also this change: changeset: 95683:fc0e79387a3a user:Berker Peksag date:Thu Apr 16 02:31:14 2015 +0300 files: Lib/test/test_urlparse.py Lib/urllib/parse.py Misc/NEWS description: Issue #23703: Fix a

[issue25403] urllib.parse.urljoin is broken in python 3.5

2015-10-15 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +3.5regression ___ Python tracker ___ ___

[issue25403] urllib.parse.urljoin is broken in python 3.5

2015-10-15 Thread Martin Panter
Martin Panter added the comment: It is true that 3.5 is meant to follow RFC 3986, which obsoletes RFC 1808 and specifies slightly different behaviour for abnormal cases. This change is documented under urljoin(), and also in “What’s New in 3.5”. Pavel’s first case is one of these differences

[issue25403] urllib.parse.urljoin is broken in python 3.5

2015-10-14 Thread Pavel Ivanov
New submission from Pavel Ivanov: urllib.parse.urljoin does not conform the RFC 1808 in case of joining relative URL’s containing ‘..’ path components anymore. Examples: Python 3.4: >>> urllib.parse.urljoin('http://a.com', '..') 'http://a.com/..' Python 3.5: >>>