Searched refs:supports_dir_fd (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 1058 … @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 …]
|
D | test_os.py | 557 @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:
|
D | test_shutil.py | 589 os.supports_dir_fd and
|
/external/python/cpython3/Lib/ |
D | os.py | 121 supports_dir_fd = _set variable 420 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
|
D | shutil.py | 452 os.supports_dir_fd and
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 1477 :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/ |
D | 3.3.rst | 1611 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.
|