Home
last modified time | relevance | path

Searched refs:test_pyc (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_zipimport.py43 test_pyc = make_pyc(test_co, NOW) variable
144 files = {TESTMOD + pyc_ext: (NOW, test_pyc)}
149 TESTMOD + pyc_ext: (NOW, test_pyc)}
158 m0 = ord(test_pyc[0])
160 badmagic_pyc = chr(m0) + test_pyc[1:]
167 m0 = ord(test_pyc[0])
169 badmagic_pyc = chr(m0) + test_pyc[1:]
179 t3 = ord(test_pyc[7])
182 badtime_pyc = test_pyc[:7] + chr(t3) + test_pyc[8:]
189 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc),
[all …]
/external/python/cpython3/Lib/test/
Dtest_zipimport.py50 test_pyc = make_pyc(test_co, NOW, len(test_src)) variable
182 files = {TESTMOD + pyc_ext: (NOW, test_pyc)}
187 TESTMOD + pyc_ext: (NOW, test_pyc)}
210 badmagic_pyc = bytearray(test_pyc)
218 badmagic_pyc = bytearray(test_pyc)
229 badtime_pyc = bytearray(test_pyc)
239 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc),
240 packdir + TESTMOD + pyc_ext: (NOW, test_pyc)}
248 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc),
249 packdir2 + "__init__" + pyc_ext: (NOW, test_pyc),
[all …]