Searched refs:test_pyc (Results 1 – 2 of 2) sorted by relevance
| /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 …]
|
| /external/python/cpython3/Lib/test/ |
| D | test_zipimport.py | 51 test_pyc = make_pyc(test_co, NOW, len(test_src)) variable 186 files = {TESTMOD + pyc_ext: (NOW, test_pyc)} 191 TESTMOD + pyc_ext: (NOW, test_pyc)} 229 badmagic_pyc = bytearray(test_pyc) 237 badmagic_pyc = bytearray(test_pyc) 248 badtime_pyc = bytearray(test_pyc) 258 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc), 259 packdir + TESTMOD + pyc_ext: (NOW, test_pyc)} 267 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc), 268 packdir2 + "__init__" + pyc_ext: (NOW, test_pyc), [all …]
|