Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_zipimport.py52 TESTMOD = "ziptestmodule" variable
140 files = {TESTMOD + ".py": (NOW, test_src)}
141 self.doTest(".py", files, TESTMOD)
144 files = {TESTMOD + pyc_ext: (NOW, test_pyc)}
145 self.doTest(pyc_ext, files, TESTMOD)
148 files = {TESTMOD + ".py": (NOW, test_src),
149 TESTMOD + pyc_ext: (NOW, test_pyc)}
150 self.doTest(pyc_ext, files, TESTMOD)
153 files = {TESTMOD + ".py": (NOW, "")}
154 self.doTest(None, files, TESTMOD)
[all …]
/external/python/cpython3/Lib/test/
Dtest_zipimport.py53 TESTMOD = "ziptestmodule" variable
59 pyc_file = importlib.util.cache_from_source(TESTMOD + '.py')
178 files = {TESTMOD + ".py": (NOW, test_src)}
179 self.doTest(".py", files, TESTMOD)
182 files = {TESTMOD + pyc_ext: (NOW, test_pyc)}
183 self.doTest(pyc_ext, files, TESTMOD)
186 files = {TESTMOD + ".py": (NOW, test_src),
187 TESTMOD + pyc_ext: (NOW, test_pyc)}
188 self.doTest(pyc_ext, files, TESTMOD)
198 files = {TESTMOD + ".py": (NOW, "state = 'new'"),
[all …]