Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/os.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,8 @@ def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=

def _fwalk(stack, isbytes, topdown, onerror, follow_symlinks):
# Note: This uses O(depth of the directory tree) file descriptors: if
# necessary, it can be adapted to only require O(1) FDs, see issue
# #13734.
# necessary, it can be adapted to only require O(1) FDs.
# See https://github.com/python/cpython/issues/57943

action, value = stack.pop()
if action == _fwalk_close:
Expand Down
Loading