Searched refs:supports_dir_fd (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 1060 … @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 …]
|
D | test_os.py | 706 @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:
|
D | test_shutil.py | 381 os.supports_dir_fd and
|
/external/python/cpython3/Lib/ |
D | os.py | 125 supports_dir_fd = _set variable 428 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
|
D | shutil.py | 678 os.supports_dir_fd and
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_os_test.py | 4535 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/ |
D | os.rst | 1529 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/ |
D | fake_filesystem.py | 4138 if real_fct not in self.supports_dir_fd:
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1611 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.
|