diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-03-08 12:31:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 12:31:47 (GMT) |
commit | db283b32e7580741a8b6b7f27f616cc656634750 (patch) | |
tree | e0c36e673702bcc361e5d2eea1be62a5df17f82d /Doc/library/pathlib.rst | |
parent | eb4e2ae2b8486e8ee4249218b95d94a9f0cc513e (diff) | |
download | cpython-db283b32e7580741a8b6b7f27f616cc656634750.zip cpython-db283b32e7580741a8b6b7f27f616cc656634750.tar.gz cpython-db283b32e7580741a8b6b7f27f616cc656634750.tar.bz2 |
bpo-39567: Document audit for os.walk, os.fwalk, Path.glob and Path.rglob. (GH-18499)
Diffstat (limited to 'Doc/library/pathlib.rst')
-rw-r--r-- | Doc/library/pathlib.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 7c0ffd5..004c156 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -763,6 +763,8 @@ call fails (for example because the path doesn't exist). Using the "``**``" pattern in large directory trees may consume an inordinate amount of time. + .. audit-event:: pathlib.Path.glob self,pattern pathlib.Path.glob + .. method:: Path.group() @@ -1025,6 +1027,8 @@ call fails (for example because the path doesn't exist). PosixPath('setup.py'), PosixPath('test_pathlib.py')] + .. audit-event:: pathlib.Path.rglob self,pattern pathlib.Path.rglob + .. method:: Path.rmdir() |