diff options
author | Stanislav Zmiev <zertarx@gmail.com> | 2022-07-22 23:55:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 23:55:46 (GMT) |
commit | c1e929858ad96fc6e41bc637e5ec9343b4f7e3c7 (patch) | |
tree | 29ed6ea80acdbb4b670282f391adaac75fea1a38 /Lib/test/support | |
parent | e4d3a96a113070fde433834a6c9fb79ebeebad4a (diff) | |
download | cpython-c1e929858ad96fc6e41bc637e5ec9343b4f7e3c7.zip cpython-c1e929858ad96fc6e41bc637e5ec9343b4f7e3c7.tar.gz cpython-c1e929858ad96fc6e41bc637e5ec9343b4f7e3c7.tar.bz2 |
gh-90385: Add `pathlib.Path.walk()` method (GH-92517)
Automerge-Triggered-By: GH:brettcannon
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/os_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/os_helper.py b/Lib/test/support/os_helper.py index 4edb1ab..61d12f5 100644 --- a/Lib/test/support/os_helper.py +++ b/Lib/test/support/os_helper.py @@ -572,7 +572,7 @@ def fs_is_case_insensitive(directory): class FakePath: - """Simple implementing of the path protocol. + """Simple implementation of the path protocol. """ def __init__(self, path): self.path = path |