Home
last modified time | relevance | path

Searched refs:supports_fd (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/
Dos.py145 supports_fd = _set variable
428 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py679 os.scandir in os.supports_fd and
/external/python/cpython3/Lib/test/
Dtest_posix.py182 …@unittest.skipUnless(getattr(os, 'execve', None) in os.supports_fd, "test needs execve() to suppor…
437 @unittest.skipUnless(os.utime in os.supports_fd, "test needs fd support in os.utime")
814 @unittest.skipUnless(posix.listdir in os.supports_fd,
Dtest_os.py696 @unittest.skipUnless(os.utime in os.supports_fd,
802 if os.utime not in os.supports_fd:
4077 @unittest.skipUnless(os.listdir in os.supports_fd,
4080 self.assertIn(os.scandir, os.supports_fd)
Dtest_shutil.py382 os.listdir in os.supports_fd and
/external/python/cpython3/Doc/library/
Dos.rst1512 for a particular function on your platform using :data:`os.supports_fd`.
2813 .. data:: supports_fd
2824 ``supports_fd``. As an example, this expression evaluates to ``True`` if
2828 os.chdir in os.supports_fd
3393 you can check whether or not it is available using :data:`os.supports_fd`.
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py126 if os.listdir not in os.supports_fd:
462 if os.lstat not in os.supports_fd:
3814 if os.utime not in os.supports_fd:
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1617 for this can be checked via the :data:`os.supports_fd` set.