Home | History | Annotate | Download | only in test

Lines Matching refs:NOW

42 NOW = time.time()
43 test_pyc = make_pyc(test_co, NOW)
129 files = {"zlib.py": (NOW, test_src)}
140 files = {TESTMOD + ".py": (NOW, test_src)}
144 files = {TESTMOD + pyc_ext: (NOW, test_pyc)}
148 files = {TESTMOD + ".py": (NOW, test_src),
149 TESTMOD + pyc_ext: (NOW, test_pyc)}
153 files = {TESTMOD + ".py": (NOW, "")}
161 files = {TESTMOD + ".py": (NOW, test_src),
162 TESTMOD + pyc_ext: (NOW, badmagic_pyc)}
170 files = {TESTMOD + pyc_ext: (NOW, badmagic_pyc)}
183 files = {TESTMOD + ".py": (NOW, test_src),
184 TESTMOD + pyc_ext: (NOW, badtime_pyc)}
189 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc),
190 packdir + TESTMOD + pyc_ext: (NOW, test_pyc)}
196 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc),
197 packdir2 + "__init__" + pyc_ext: (NOW, test_pyc),
198 packdir2 + TESTMOD + pyc_ext: (NOW, test_pyc)}
204 files = {packdir + "__init__" + pyc_ext: (NOW, test_pyc),
205 packdir2 + "__init__" + pyc_ext: (NOW, test_pyc),
206 packdir2 + TESTMOD + pyc_ext: (NOW, test_pyc)}
249 files = {packdir2 + "__init__" + pyc_ext: (NOW, test_pyc),
250 packdir2 + TESTMOD + pyc_ext: (NOW, test_pyc)}
306 pyc = make_pyc(compile(src, "<???>", "exec"), NOW)
307 files = {TESTMOD + pyc_ext: (NOW, pyc),
308 "some.data": (NOW, "some data")}
314 files = {TESTMOD + ".py": (NOW, test_src)}
322 files = {TESTMOD + ".py": (NOW, test_src)}
326 pyc = make_pyc(compile(test_src, "<???>", "exec"), NOW)
327 files = {TESTMOD + ".py": (NOW, test_src),
328 TESTMOD + pyc_ext: (NOW, pyc)}
332 files = {TESTMOD + ".py": (NOW, test_src),
333 "xyz.txt": (NOW, ">>> log.append(True)\n")}
381 files = {TESTMOD + ".py": (NOW, raise_src)}