(self)
| 119 | self.assertTrue(*self.timestamp_metadata()) |
| 120 | |
| 121 | def test_mtime(self): |
| 122 | # Test a change in mtime leads to a new .pyc. |
| 123 | self.recreation_check(struct.pack('<4sLL', importlib.util.MAGIC_NUMBER, |
| 124 | 0, 1)) |
| 125 | |
| 126 | def test_magic_number(self): |
| 127 | # Test a change in mtime leads to a new .pyc. |
nothing calls this directly
no test coverage detected