Files
cpython/Lib/pathlib
Barney Gale 7ff61f51b6 GH-119169: Implement pathlib.Path.walk() using os.walk() (#119573)
For silly reasons, pathlib's generic implementation of `walk()` currently
resides in `glob._Globber`. This commit moves it into
`pathlib._abc.PathBase.walk()` where it really belongs, and makes
`pathlib.Path.walk()` call `os.walk()`.
2024-05-29 20:51:04 +00:00
..