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 | 49 test_pyc = make_pyc(test_co, NOW, len(test_src)) variable 184 files = {TESTMOD + pyc_ext: (NOW, test_pyc)} 189 TESTMOD + pyc_ext: (NOW, test_pyc)} 227 badmagic_pyc = bytearray(test_pyc) 235 badmagic_pyc = bytearray(test_pyc) 246 badtime_pyc = bytearray(test_pyc) 264 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc), 265 packdir + TESTMOD + pyc_ext: (NOW, test_pyc)} 273 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc), 274 packdir2 + "__init__" + pyc_ext: (NOW, test_pyc), [all …]
|