Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
Open
Description
Bug report
Bug description:
The tests of lxml do (simplified):
fromurllib.parseimporturljoinurljoin('file:','/foo/bar')
- On Python 3.13.0 and earlier, the result of the urljoin call is
file:///foo/bar
. - On Python 3.14.0a1, the result of the urljoin call is
file:/foo/bar
.
This change of behavior was introduced infc897fc#123273 cc@serhiy-storchaka
The NEWS entry in that change does not seem to indicate this change was intentional.
CPython versions tested on:
3.14, CPython main branch
Operating systems tested on:
Linux