(self)
| 301 | self.doTest(".py", files, TESTMOD) |
| 302 | |
| 303 | def test2038MTime(self): |
| 304 | # Make sure we can handle mtimes larger than what a 32-bit signed number |
| 305 | # can hold. |
| 306 | twenty_thirty_eight_pyc = make_pyc(test_co, 2**32 - 1, len(test_src)) |
| 307 | files = {TESTMOD + ".py": test_src, |
| 308 | TESTMOD + pyc_ext: twenty_thirty_eight_pyc} |
| 309 | self.doTest(".py", files, TESTMOD) |
| 310 | |
| 311 | def testPackage(self): |
| 312 | packdir = TESTPACK + os.sep |