(self)
| 1725 | |
| 1726 | @unittest.skipUnless(os.stat in os.supports_dir_fd, "test needs dir_fd support in os.stat()") |
| 1727 | def test_stat_dir_fd(self): |
| 1728 | self.check_statlike_dir_fd(posix.stat, prefix="st_") |
| 1729 | |
| 1730 | @unittest.skipUnless(hasattr(posix, 'statx'), "test needs os.statx()") |
| 1731 | def test_statx_dir_fd(self): |
nothing calls this directly
no test coverage detected