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
..
__init__.py Move pathlib implementation out of `__init__.py` (#118582) 2024-05-05 20:57:19 +01:00
_abc.py GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (#119573) 2024-05-29 20:51:04 +00:00
_local.py GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (#119573) 2024-05-29 20:51:04 +00:00