Home
last modified time | relevance | path

Searched refs:fwalk (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Misc/NEWS.d/
D3.6.0b3.rst156 os.fwalk() no longer fails on broken links.
D3.9.0a4.rst417 Added audit for :func:`os.walk`, :func:`os.fwalk`, :meth:`pathlib.Path.glob`
D3.5.3rc1.rst657 os.fwalk() no longer fails on broken links.
D3.5.2rc1.rst1387 os.fwalk() no longer skips remaining directories when error occurs.
D3.7.0a1.rst3090 Added support of file descriptors in os.scandir() on Unix. os.fwalk() is
3268 Added support for bytes paths in os.fwalk().
4061 os.fwalk() no longer fails on broken links.
D3.6.0a1.rst2181 os.fwalk() no longer skips remaining directories when error occurs.
/third_party/python/Lib/test/
Dtest_os.py1465 for root, dirs, files, root_fd in self.fwalk(top, **kwargs):
1468 def fwalk(self, *args, **kwargs): member in FwalkTests
1469 return os.fwalk(*args, **kwargs)
1485 for root, dirs, files, rootfd in self.fwalk(**fwalk_kwargs):
1507 for root, dirs, files, rootfd in self.fwalk(*args, follow_symlinks=follow_symlinks):
1522 for x in self.fwalk(os_helper.TESTFN):
1548 def fwalk(self, top='.', *args, **kwargs): member in BytesFwalkTests
1549 for broot, bdirs, bfiles, topfd in os.fwalk(os.fsencode(top), *args, **kwargs):
/third_party/python/Lib/
Dos.py430 def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None): function
/third_party/python/Doc/library/
Dos.rst3215 .. function:: fwalk(top='.', topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None)
3229 that, unlike other functions, the :func:`fwalk` default value for
3234 Since :func:`fwalk` yields file descriptors, those are only valid until
3243 for root, dirs, files, rootfd in os.fwalk('python/Lib/email'):
3260 for root, dirs, files, rootfd in os.fwalk(top, topdown=False):
3266 .. audit-event:: os.fwalk top,topdown,onerror,follow_symlinks,dir_fd os.fwalk
/third_party/python/Doc/whatsnew/
D3.7.rst1162 :func:`os.fwalk` now accepts the *path* argument as :class:`bytes`.
1841 The :func:`os.fwalk` function is now up to 2 times faster thanks to
D3.3.rst1598 - The :mod:`os` module has a new :func:`~os.fwalk` function similar to
/third_party/python/Misc/
DHISTORY7191 - Issue #15177: Added dir_fd parameter to os.fwalk().
7606 - Issue #14773: Fix os.fwalk() failing on dangling symlinks.
8813 - Issue #13734: Add os.fwalk(), a directory walking function yielding file