MCPcopy Index your code
hub / github.com/python/cpython / test2038MTime

Method test2038MTime

Lib/test/test_zipimport.py:303–309  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

doTestMethod · 0.95
make_pycFunction · 0.85

Tested by

no test coverage detected