mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
clarify when the list of subdirectories is read (closes #13779)
This commit is contained in:
parent
9204e09178
commit
e58e0c7f33
2 changed files with 12 additions and 8 deletions
12
Lib/os.py
12
Lib/os.py
|
@ -312,11 +312,12 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
|
|||
|
||||
When topdown is true, the caller can modify the dirnames list in-place
|
||||
(e.g., via del or slice assignment), and walk will only recurse into the
|
||||
subdirectories whose names remain in dirnames; this can be used to prune
|
||||
the search, or to impose a specific order of visiting. Modifying
|
||||
dirnames when topdown is false is ineffective, since the directories in
|
||||
dirnames have already been generated by the time dirnames itself is
|
||||
generated.
|
||||
subdirectories whose names remain in dirnames; this can be used to prune the
|
||||
search, or to impose a specific order of visiting. Modifying dirnames when
|
||||
topdown is false is ineffective, since the directories in dirnames have
|
||||
already been generated by the time dirnames itself is generated. No matter
|
||||
the value of topdown, the list of subdirectories is retrieved before the
|
||||
tuples for the directory and its subdirectories are generated.
|
||||
|
||||
By default errors from the os.listdir() call are ignored. If
|
||||
optional arg 'onerror' is specified, it should be a function; it
|
||||
|
@ -344,6 +345,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
|
|||
print("bytes in", len(files), "non-directory files")
|
||||
if 'CVS' in dirs:
|
||||
dirs.remove('CVS') # don't visit CVS directories
|
||||
|
||||
"""
|
||||
|
||||
islink, join, isdir = path.islink, path.join, path.isdir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue