Home
last modified time | relevance | path

Searched refs:followlinks (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
Dos.py209 def walk(top, topdown=True, onerror=None, followlinks=False): argument
295 if followlinks or not islink(new_path):
296 for x in walk(new_path, topdown, onerror, followlinks):
/external/harfbuzz_ng/test/shaping/
Dhb_test_tools.py541 for dirpath, dirnames, filenames in os.walk (s, followlinks=True):
/external/python/cpython2/Lib/test/
Dtest_os.py469 for root, dirs, files in os.walk(walk_path, followlinks=True):
/external/python/cpython2/Doc/library/
Dos.rst1589 .. function:: walk(top, topdown=True, onerror=None, followlinks=False)
1631 directories. Set *followlinks* to ``True`` to visit directories pointed to by
1635 The *followlinks* parameter.
1639 Be aware that setting *followlinks* to ``True`` can lead to infinite recursion if a
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2183 * The :func:`os.walk` function now has a ``followlinks`` parameter. If
/external/python/cpython2/Misc/
DNEWS11282 - Patch #1273829: os.walk() now has a "followlinks" parameter. If set