Searched refs:followlinks (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | os.py | 209 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/ |
D | hb_test_tools.py | 541 for dirpath, dirnames, filenames in os.walk (s, followlinks=True):
|
/external/python/cpython2/Lib/test/ |
D | test_os.py | 469 for root, dirs, files in os.walk(walk_path, followlinks=True):
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 1589 .. 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/ |
D | 2.6.rst | 2183 * The :func:`os.walk` function now has a ``followlinks`` parameter. If
|
/external/python/cpython2/Misc/ |
D | NEWS | 11282 - Patch #1273829: os.walk() now has a "followlinks" parameter. If set
|