(self)
| 1034 | |
| 1035 | class UtimeTests(unittest.TestCase): |
| 1036 | def setUp(self): |
| 1037 | self.dirname = os_helper.TESTFN |
| 1038 | self.fname = os.path.join(self.dirname, "f1") |
| 1039 | |
| 1040 | self.addCleanup(os_helper.rmtree, self.dirname) |
| 1041 | os.mkdir(self.dirname) |
| 1042 | create_file(self.fname) |
| 1043 | |
| 1044 | def support_subsecond(self, filename): |
| 1045 | # Heuristic to check if the filesystem supports timestamp with |
nothing calls this directly
no test coverage detected