diff options
author | Steve Dower <steve.dower@python.org> | 2021-04-23 17:02:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 17:02:47 (GMT) |
commit | 3513d55a617012002c3f82dbf3cec7ec1abd7090 (patch) | |
tree | 8af292b4e8d90e430de4cde0dc2244ba7e2fe82a /Misc/NEWS.d | |
parent | 7d37b86ad48368cf93440ca220b758696730d0e5 (diff) | |
download | cpython-3513d55a617012002c3f82dbf3cec7ec1abd7090.zip cpython-3513d55a617012002c3f82dbf3cec7ec1abd7090.tar.gz cpython-3513d55a617012002c3f82dbf3cec7ec1abd7090.tar.bz2 |
bpo-43607: Fix urllib handling of Windows paths with \\?\ prefix (GH-25539)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-04-22-22-39-58.bpo-43607.7IYDkG.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-22-22-39-58.bpo-43607.7IYDkG.rst b/Misc/NEWS.d/next/Library/2021-04-22-22-39-58.bpo-43607.7IYDkG.rst new file mode 100644 index 0000000..fa62846 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-04-22-22-39-58.bpo-43607.7IYDkG.rst @@ -0,0 +1,2 @@ +:mod:`urllib` can now convert Windows paths with ``\\?\`` prefixes into URL +paths. |