diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-14 09:47:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 09:47:05 (GMT) |
commit | 872000606271c52d989e53fe4cc9904343d81855 (patch) | |
tree | 6997a88ef80f2162ebfbddada1e17c484e94cfe9 /Misc/NEWS.d | |
parent | 29a2f9cc286f6cef8a359fc7022fe9d480a2eb79 (diff) | |
download | cpython-872000606271c52d989e53fe4cc9904343d81855.zip cpython-872000606271c52d989e53fe4cc9904343d81855.tar.gz cpython-872000606271c52d989e53fe4cc9904343d81855.tar.bz2 |
[3.13] gh-67693: Fix urlunparse() and urlunsplit() for URIs with path starting with multiple slashes and no authority (GH-113563) (GH-119023)
(cherry picked from commit e237b25a4fa5626fcd1b1848aa03f725f892e40e)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-08-27-01-16-50.gh-issue-67693.4NIAiy.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-27-01-16-50.gh-issue-67693.4NIAiy.rst b/Misc/NEWS.d/next/Library/2019-08-27-01-16-50.gh-issue-67693.4NIAiy.rst new file mode 100644 index 0000000..22457df --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-08-27-01-16-50.gh-issue-67693.4NIAiy.rst @@ -0,0 +1,2 @@ +Fix :func:`urllib.parse.urlunparse` and :func:`urllib.parse.urlunsplit` for URIs with path starting with multiple slashes and no authority. +Based on patch by Ashwin Ramaswami. |