Searched refs:TESTMOD (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Lib/test/ |
D | test_zipimport.py | 52 TESTMOD = "ziptestmodule" variable 58 pyc_file = importlib.util.cache_from_source(TESTMOD + '.py') 180 files = {TESTMOD + ".py": (NOW, test_src)} 181 self.doTest(".py", files, TESTMOD) 184 files = {TESTMOD + pyc_ext: (NOW, test_pyc)} 185 self.doTest(pyc_ext, files, TESTMOD) 188 files = {TESTMOD + ".py": (NOW, test_src), 189 TESTMOD + pyc_ext: (NOW, test_pyc)} 190 self.doTest(pyc_ext, files, TESTMOD) 200 files = {TESTMOD + ".py": (NOW, "state = 'new'"), [all …]
|