summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarney Gale <barney.gale@gmail.com>2024-03-04 02:26:33 (GMT)
committerGitHub <noreply@github.com>2024-03-04 02:26:33 (GMT)
commit1dce0073da2e48f3cd387f4d57b14d6813bb8a85 (patch)
treebdfbe571b2854ce3b455f65c5148495c98995173
parent3383d6afa3e4454b237bca2ef856e0f79b5b30c1 (diff)
downloadcpython-1dce0073da2e48f3cd387f4d57b14d6813bb8a85.zip
cpython-1dce0073da2e48f3cd387f4d57b14d6813bb8a85.tar.gz
cpython-1dce0073da2e48f3cd387f4d57b14d6813bb8a85.tar.bz2
pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293)
Switch the default value of *follow_symlinks* from `None` to `True` in `pathlib._abc.PathBase.glob()` and `rglob()`. This speeds up recursive globbing. No change to the public pathlib classes.
-rw-r--r--Lib/pathlib/_abc.py4
-rw-r--r--Lib/test/test_pathlib/test_pathlib_abc.py69
2 files changed, 34 insertions, 39 deletions
diff --git a/Lib/pathlib/_abc.py b/Lib/pathlib/_abc.py
index 44fea52..645d62a 100644
--- a/Lib/pathlib/_abc.py
+++ b/Lib/pathlib/_abc.py
@@ -789,7 +789,7 @@ class PathBase(PurePathBase):
def _make_child_relpath(self, name):
return self.joinpath(name)
- def glob(self, pattern, *, case_sensitive=None, follow_symlinks=None):
+ def glob(self, pattern, *, case_sensitive=None, follow_symlinks=True):
"""Iterate over this subtree and yield all existing files (of any
kind, including directories) matching the given relative pattern.
"""
@@ -846,7 +846,7 @@ class PathBase(PurePathBase):
paths = _select_children(paths, bool(stack), follow_symlinks, match)
return paths
- def rglob(self, pattern, *, case_sensitive=None, follow_symlinks=None):
+ def rglob(self, pattern, *, case_sensitive=None, follow_symlinks=True):
"""Recursively yield all existing files (of any kind, including
directories) matching the given relative pattern, anywhere in
this subtree.
diff --git a/Lib/test/test_pathlib/test_pathlib_abc.py b/Lib/test/test_pathlib/test_pathlib_abc.py
index 5bfb76f..fb467a0 100644
--- a/Lib/test/test_pathlib/test_pathlib_abc.py
+++ b/Lib/test/test_pathlib/test_pathlib_abc.py
@@ -1844,51 +1844,46 @@ class DummyPathTest(DummyPurePathTest):
_check(p, "*/dirD/**", ["dirC/dirD/", "dirC/dirD/fileD"])
_check(p, "*/dirD/**/", ["dirC/dirD/"])
- def test_rglob_common(self):
- def _check(glob, expected):
- self.assertEqual(set(glob), {P(self.base, q) for q in expected})
+ def test_rglob_follow_symlinks_none(self):
+ def _check(path, glob, expected):
+ actual = set(path.rglob(glob, follow_symlinks=None))
+ self.assertEqual(actual, { P(self.base, q) for q in expected })
P = self.cls
p = P(self.base)
it = p.rglob("fileA")
self.assertIsInstance(it, collections.abc.Iterator)
- _check(it, ["fileA"])
- _check(p.rglob("fileB"), ["dirB/fileB"])
- _check(p.rglob("**/fileB"), ["dirB/fileB"])
- _check(p.rglob("*/fileA"), [])
- if not self.can_symlink:
- _check(p.rglob("*/fileB"), ["dirB/fileB"])
- else:
- _check(p.rglob("*/fileB"), ["dirB/fileB", "dirB/linkD/fileB",
- "linkB/fileB", "dirA/linkC/fileB"])
- _check(p.rglob("file*"), ["fileA", "dirB/fileB",
- "dirC/fileC", "dirC/dirD/fileD"])
- if not self.can_symlink:
- _check(p.rglob("*/"), [
- "dirA/", "dirB/", "dirC/", "dirC/dirD/", "dirE/",
- ])
- else:
- _check(p.rglob("*/"), [
+ _check(p, "fileA", ["fileA"])
+ _check(p, "fileB", ["dirB/fileB"])
+ _check(p, "**/fileB", ["dirB/fileB"])
+ _check(p, "*/fileA", [])
+
+ if self.can_symlink:
+ _check(p, "*/fileB", ["dirB/fileB", "dirB/linkD/fileB",
+ "linkB/fileB", "dirA/linkC/fileB"])
+ _check(p, "*/", [
"dirA/", "dirA/linkC/", "dirB/", "dirB/linkD/", "dirC/",
- "dirC/dirD/", "dirE/", "linkB/",
- ])
- _check(p.rglob(""), ["", "dirA/", "dirB/", "dirC/", "dirE/", "dirC/dirD/"])
+ "dirC/dirD/", "dirE/", "linkB/"])
+ else:
+ _check(p, "*/fileB", ["dirB/fileB"])
+ _check(p, "*/", ["dirA/", "dirB/", "dirC/", "dirC/dirD/", "dirE/"])
+ _check(p, "file*", ["fileA", "dirB/fileB", "dirC/fileC", "dirC/dirD/fileD"])
+ _check(p, "", ["", "dirA/", "dirB/", "dirC/", "dirE/", "dirC/dirD/"])
p = P(self.base, "dirC")
- _check(p.rglob("*"), ["dirC/fileC", "dirC/novel.txt",
+ _check(p, "*", ["dirC/fileC", "dirC/novel.txt",
"dirC/dirD", "dirC/dirD/fileD"])
- _check(p.rglob("file*"), ["dirC/fileC", "dirC/dirD/fileD"])
- _check(p.rglob("**/file*"), ["dirC/fileC", "dirC/dirD/fileD"])
- _check(p.rglob("dir*/**"), ["dirC/dirD/", "dirC/dirD/fileD"])
- _check(p.rglob("dir*/**/"), ["dirC/dirD/"])
- _check(p.rglob("*/*"), ["dirC/dirD/fileD"])
- _check(p.rglob("*/"), ["dirC/dirD/"])
- _check(p.rglob(""), ["dirC/", "dirC/dirD/"])
- _check(p.rglob("**"), [
- "dirC/", "dirC/fileC", "dirC/dirD", "dirC/dirD/fileD", "dirC/novel.txt"])
- _check(p.rglob("**/"), ["dirC/", "dirC/dirD/"])
+ _check(p, "file*", ["dirC/fileC", "dirC/dirD/fileD"])
+ _check(p, "**/file*", ["dirC/fileC", "dirC/dirD/fileD"])
+ _check(p, "dir*/**", ["dirC/dirD/", "dirC/dirD/fileD"])
+ _check(p, "dir*/**/", ["dirC/dirD/"])
+ _check(p, "*/*", ["dirC/dirD/fileD"])
+ _check(p, "*/", ["dirC/dirD/"])
+ _check(p, "", ["dirC/", "dirC/dirD/"])
+ _check(p, "**", ["dirC/", "dirC/fileC", "dirC/dirD", "dirC/dirD/fileD", "dirC/novel.txt"])
+ _check(p, "**/", ["dirC/", "dirC/dirD/"])
# gh-91616, a re module regression
- _check(p.rglob("*.txt"), ["dirC/novel.txt"])
- _check(p.rglob("*.*"), ["dirC/novel.txt"])
+ _check(p, "*.txt", ["dirC/novel.txt"])
+ _check(p, "*.*", ["dirC/novel.txt"])
@needs_posix
def test_rglob_posix(self):
@@ -1969,7 +1964,7 @@ class DummyPathTest(DummyPurePathTest):
# Don't get fooled by symlink loops (Issue #26012).
P = self.cls
p = P(self.base)
- given = set(p.rglob('*'))
+ given = set(p.rglob('*', follow_symlinks=None))
expect = {'brokenLink',
'dirA', 'dirA/linkC',
'dirB', 'dirB/fileB', 'dirB/linkD',