summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarney Gale <barney.gale@gmail.com>2022-05-10 00:12:16 (GMT)
committerGitHub <noreply@github.com>2022-05-10 00:12:16 (GMT)
commitdcdf250d2de1428f7d8b4e9ecf51d2fd8200e21a (patch)
tree73abe338405d711454c8dc931a87c2e45ba23da5 /Misc
parentcb35402c1867b48704c2de1d1efd465ca738f374 (diff)
downloadcpython-dcdf250d2de1428f7d8b4e9ecf51d2fd8200e21a.zip
cpython-dcdf250d2de1428f7d8b4e9ecf51d2fd8200e21a.tar.gz
cpython-dcdf250d2de1428f7d8b4e9ecf51d2fd8200e21a.tar.bz2
gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)
We could try to remedy this by taking a slice, but we then run into an issue where the empty string will match altsep on POSIX. That rabbit hole could keep getting deeper. A proper fix for the original issue involves making pathlib's path normalisation more configurable - in this case we want to retain trailing slashes, but in other we might want to preserve `./` prefixes, or elide `../` segments when we're sure we won't encounter symlinks. This reverts commit ea2f5bcda1a392804487e6883be89fbad38a01a5.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-05-09-23-36-19.gh-issue-92550.qZ4AhU.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-05-09-23-36-19.gh-issue-92550.qZ4AhU.rst b/Misc/NEWS.d/next/Library/2022-05-09-23-36-19.gh-issue-92550.qZ4AhU.rst
new file mode 100644
index 0000000..1931b32
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-05-09-23-36-19.gh-issue-92550.qZ4AhU.rst
@@ -0,0 +1,2 @@
+:meth:`pathlib.Path.rglob` raised :exc:`IndexError` when called with an
+empty string. This regression was introduced in 3.11b1.