Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_posix.py1060 … @unittest.skipUnless(os.access in os.supports_dir_fd, "test needs dir_fd support for os.access()")
1068 @unittest.skipUnless(os.chmod in os.supports_dir_fd, "test needs dir_fd support in os.chmod()")
1081 @unittest.skipUnless(os.chown in os.supports_dir_fd, "test needs dir_fd support in os.chown()")
1092 @unittest.skipUnless(os.stat in os.supports_dir_fd, "test needs dir_fd support in os.stat()")
1114 @unittest.skipUnless(os.utime in os.supports_dir_fd, "test needs dir_fd support in os.utime()")
1144 @unittest.skipUnless(os.link in os.supports_dir_fd, "test needs dir_fd support in os.link()")
1159 @unittest.skipUnless(os.mkdir in os.supports_dir_fd, "test needs dir_fd support in os.mkdir()")
1169 @unittest.skipUnless((os.mknod in os.supports_dir_fd) and hasattr(stat, 'S_IFIFO'),
1188 @unittest.skipUnless(os.open in os.supports_dir_fd, "test needs dir_fd support in os.open()")
1202 …@unittest.skipUnless(os.readlink in os.supports_dir_fd, "test needs dir_fd support in os.readlink(…
[all …]
Dtest_os.py706 @unittest.skipUnless(os.utime in os.supports_dir_fd,
806 if os.utime not in os.supports_dir_fd:
4098 if os.stat in os.supports_dir_fd:
Dtest_shutil.py381 os.supports_dir_fd and
/external/python/cpython3/Lib/
Dos.py125 supports_dir_fd = _set variable
428 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py678 os.supports_dir_fd and
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py4535 self.os.supports_dir_fd = set()
4545 self.os.supports_dir_fd.add(os.access)
4553 self.os.supports_dir_fd.add(os.chmod)
4564 self.os.supports_dir_fd.add(os.chown)
4574 self.os.supports_dir_fd.add(os.link)
4582 self.os.supports_dir_fd.add(os.link)
4590 self.os.supports_dir_fd.add(os.symlink)
4600 self.os.supports_dir_fd.add(os.readlink)
4607 self.os.supports_dir_fd.add(os.stat)
4614 self.os.supports_dir_fd.add(os.lstat)
[all …]
/external/python/cpython3/Doc/library/
Dos.rst1529 on your platform using :data:`os.supports_dir_fd`. If it's unavailable,
2769 .. data:: supports_dir_fd
2782 for its *dir_fd* parameter, use the ``in`` operator on ``supports_dir_fd``.
2786 os.stat in os.supports_dir_fd
/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py4138 if real_fct not in self.supports_dir_fd:
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1611 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.