(self)
| 234 | self.doTest(pyc_ext, files, TESTMOD) |
| 235 | |
| 236 | def testBoth(self): |
| 237 | files = {TESTMOD + ".py": test_src, |
| 238 | TESTMOD + pyc_ext: test_pyc} |
| 239 | self.doTest(pyc_ext, files, TESTMOD) |
| 240 | |
| 241 | def testUncheckedHashBasedPyc(self): |
| 242 | source = b"state = 'old'" |