Searched refs:test_pyc (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_zipimport.py | 49 test_pyc = make_pyc(test_co, NOW, len(test_src)) variable 185 files = {TESTMOD + pyc_ext: (NOW, test_pyc)} 190 TESTMOD + pyc_ext: (NOW, test_pyc)} 228 badmagic_pyc = bytearray(test_pyc) 236 badmagic_pyc = bytearray(test_pyc) 247 badtime_pyc = bytearray(test_pyc) 265 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc), 266 packdir + TESTMOD + pyc_ext: (NOW, test_pyc)} 274 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc), 275 packdir2 + "__init__" + pyc_ext: (NOW, test_pyc), [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_zipimport.py | 43 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 …]
|