Home
last modified time | relevance | path

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

/external/python/cpython3/Misc/NEWS.d/
D3.6.0b3.rst156 os.fwalk() no longer fails on broken links.
D3.5.3rc1.rst657 os.fwalk() no longer fails on broken links.
D3.5.2rc1.rst1388 os.fwalk() no longer skips remaining directories when error occurs.
D3.7.0a1.rst3095 Added support of file descriptors in os.scandir() on Unix. os.fwalk() is
3273 Added support for bytes paths in os.fwalk().
4066 os.fwalk() no longer fails on broken links.
D3.6.0a1.rst2182 os.fwalk() no longer skips remaining directories when error occurs.
/external/python/cpython3/Lib/test/
Dtest_os.py1040 for root, dirs, files, root_fd in self.fwalk(top, **kwargs):
1043 def fwalk(self, *args, **kwargs): member in FwalkTests
1044 return os.fwalk(*args, **kwargs)
1060 for root, dirs, files, rootfd in self.fwalk(**fwalk_kwargs):
1082 for root, dirs, files, rootfd in self.fwalk(*args, follow_symlinks=follow_symlinks):
1097 for x in self.fwalk(support.TESTFN):
1119 def fwalk(self, top='.', *args, **kwargs): member in BytesFwalkTests
1120 for broot, bdirs, bfiles, topfd in os.fwalk(os.fsencode(top), *args, **kwargs):
/external/python/cpython3/Lib/
Dos.py422 def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None): function
/external/python/cpython3/Doc/library/
Dos.rst2905 .. function:: fwalk(top='.', topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None)
2919 that, unlike other functions, the :func:`fwalk` default value for
2924 Since :func:`fwalk` yields file descriptors, those are only valid until
2933 for root, dirs, files, rootfd in os.fwalk('python/Lib/email'):
2950 for root, dirs, files, rootfd in os.fwalk(top, topdown=False):
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1140 :func:`os.fwalk` now accepts the *path* argument as :class:`bytes`.
1833 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
/external/python/cpython3/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