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