Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_posix.py1058 … @unittest.skipUnless(os.access in os.supports_dir_fd, "test needs dir_fd support for os.access()")
1066 @unittest.skipUnless(os.chmod in os.supports_dir_fd, "test needs dir_fd support in os.chmod()")
1079 @unittest.skipUnless(os.chown in os.supports_dir_fd, "test needs dir_fd support in os.chown()")
1090 @unittest.skipUnless(os.stat in os.supports_dir_fd, "test needs dir_fd support in os.stat()")
1112 @unittest.skipUnless(os.utime in os.supports_dir_fd, "test needs dir_fd support in os.utime()")
1142 @unittest.skipUnless(os.link in os.supports_dir_fd, "test needs dir_fd support in os.link()")
1157 @unittest.skipUnless(os.mkdir in os.supports_dir_fd, "test needs dir_fd support in os.mkdir()")
1167 @unittest.skipUnless((os.mknod in os.supports_dir_fd) and hasattr(stat, 'S_IFIFO'),
1186 @unittest.skipUnless(os.open in os.supports_dir_fd, "test needs dir_fd support in os.open()")
1200 …@unittest.skipUnless(os.readlink in os.supports_dir_fd, "test needs dir_fd support in os.readlink(…
[all …]
Dtest_os.py557 @unittest.skipUnless(os.utime in os.supports_dir_fd,
657 if os.utime not in os.supports_dir_fd:
3614 if os.stat in os.supports_dir_fd:
Dtest_shutil.py589 os.supports_dir_fd and
/external/python/cpython3/Lib/
Dos.py121 supports_dir_fd = _set variable
420 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py452 os.supports_dir_fd and
/external/python/cpython3/Doc/library/
Dos.rst1477 :data:`os.supports_dir_fd`. If it is unavailable, using it will raise a
2609 .. data:: supports_dir_fd
2619 parameter, use the ``in`` operator on ``supports_dir_fd``. As an example,
2623 os.stat in os.supports_dir_fd
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1611 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.