(self)
| 217 | self.doTest(pyc_ext, files, TESTMOD) |
| 218 | |
| 219 | def testBoth(self): |
| 220 | files = {TESTMOD + ".py": test_src, |
| 221 | TESTMOD + pyc_ext: test_pyc} |
| 222 | self.doTest(pyc_ext, files, TESTMOD) |
| 223 | |
| 224 | def testUncheckedHashBasedPyc(self): |
| 225 | source = b"state = 'old'" |