Home
last modified time | relevance | path

Searched refs:supports_follow_symlinks (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Doc/library/
Dshutil.rst120 * If ``os.chmod in os.supports_follow_symlinks`` is
124 * If ``os.utime in os.supports_follow_symlinks`` is
128 * If ``os.chflags in os.supports_follow_symlinks`` is
138 Please see :data:`os.supports_follow_symlinks`
Dos.rst1489 using :data:`os.supports_follow_symlinks`. If it is unavailable, using it
2671 .. data:: supports_follow_symlinks
2681 parameter, use the ``in`` operator on ``supports_follow_symlinks``. As an
2685 os.stat in os.supports_follow_symlinks
/external/python/cpython3/Lib/
Dshutil.py198 if fn in os.supports_follow_symlinks:
454 os.stat in os.supports_follow_symlinks)
Dos.py178 supports_follow_symlinks = _set variable
/external/python/cpython3/Lib/test/
Dtest_shutil.py375 if os.utime in os.supports_follow_symlinks:
546 if os.utime in os.supports_follow_symlinks:
591 os.stat in os.supports_follow_symlinks)
Dtest_posix.py446 …@unittest.skipUnless(os.utime in os.supports_follow_symlinks, "test needs follow_symlinks support …
1132 if os.utime in os.supports_follow_symlinks:
Dtest_os.py537 @unittest.skipUnless(os.utime in os.supports_follow_symlinks,
650 if os.utime not in os.supports_follow_symlinks: