Home
last modified time | relevance | path

Searched refs:cache_from_source (Results 1 – 25 of 33) sorted by relevance

12

/third_party/python/Lib/test/test_importlib/
Dtest_util.py570 self.assertEqual(self.util.cache_from_source(path, optimization=''),
577 self.util.cache_from_source('whatever.py')
584 self.assertEqual(self.util.cache_from_source(path, optimization=''),
593 self.assertEqual(self.util.cache_from_source(path, False),
594 self.util.cache_from_source(path, optimization=1))
595 self.assertEqual(self.util.cache_from_source(path, True),
596 self.util.cache_from_source(path, optimization=''))
600 self.util.cache_from_source(path, False)
602 self.util.cache_from_source(path, True)
607 self.assertEqual(self.util.cache_from_source(path, optimization=''),
[all …]
Dtest_pkg_import.py9 from importlib.util import cache_from_source
42 compiled_path = cache_from_source(self.module_path)
Dtest_api.py257 cached = self.util.cache_from_source(path)
278 cached = self.util.cache_from_source(init_path)
308 cached = self.util.cache_from_source(bad_path)
337 cached = self.util.cache_from_source(init_path)
Dtest_spec.py70 self.cached = self.util.cache_from_source(self.path)
203 expected = self.util.cache_from_source(self.path)
242 self.cached = self.util.cache_from_source(self.path)
510 self.cached = self.util.cache_from_source(self.path)
Dtest_abc.py732 self.bytecode_path = self.util.cache_from_source(self.path)
778 self.cached = self.util.cache_from_source(self.path)
921 bytecode_path = self.util.cache_from_source(self.path)
/third_party/python/Lib/test/
Dtest_compileall.py39 return importlib.util.cache_from_source(script, optimization=opt)
58 self.bc_path = importlib.util.cache_from_source(self.source_path)
62 self.bc_path2 = importlib.util.cache_from_source(self.source_path2)
218 cached = importlib.util.cache_from_source(self.source_path,
221 cached2 = importlib.util.cache_from_source(self.source_path2,
224 cached3 = importlib.util.cache_from_source(self.source_path3,
291 pyc_filename = importlib.util.cache_from_source(source)
316 modcode = importlib.util.cache_from_source(mod)
347 bc = importlib.util.cache_from_source(script)
366 bc = importlib.util.cache_from_source(script)
[all …]
Dtest_py_compile.py59 self.cache_path = importlib.util.cache_from_source(self.source_path)
139 importlib.util.cache_from_source(bad_coding)))
160 cache_path = importlib.util.cache_from_source(weird_path)
226 self.cache_path = importlib.util.cache_from_source(self.source_path)
Dtest_imp.py186 imp.cache_from_source(temp_mod_name + '.py'))
467 self.assertEqual(imp.cache_from_source(path, True), expect)
Dtest_runpy.py341 "__cached__": importlib.util.cache_from_source(mod_fname),
546 "__cached__": importlib.util.cache_from_source(mod_fname),
Dtest_reprlib.py274 len(importlib.util.cache_from_source("x.py")) - len("x.py"))
/third_party/python/Tools/importbench/
Dimportbench.py68 assert not os.path.exists(imp.cache_from_source(mapping[name]))
83 bytecode_path = imp.cache_from_source(module.__file__)
111 os.unlink(imp.cache_from_source(mapping[name]))
113 assert not os.path.exists(imp.cache_from_source(mapping[name]))
124 os.unlink(imp.cache_from_source(module.__file__))
144 assert os.path.exists(imp.cache_from_source(mapping[name]))
/third_party/python/Lib/test/test_importlib/source/
Dtest_file_loader.py186 self.assertEqual(self.util.cache_from_source(file_path),
190 pycache = os.path.dirname(self.util.cache_from_source(file_path))
200 compiled = self.util.cache_from_source(source)
244 pyc = self.util.cache_from_source(source)
276 pyc = self.util.cache_from_source(source)
300 pyc = self.util.cache_from_source(source)
331 pyc = self.util.cache_from_source(source)
392 bytecode_path = self.util.cache_from_source(mapping[name])
640 bytecode_path = self.util.cache_from_source(mapping['_temp'])
658 bytecode_path = self.util.cache_from_source(mapping['_temp'])
/third_party/python/Lib/test/test_import/
D__init__.py384 compiled = importlib.util.cache_from_source(source)
546 cached_path = importlib.util.cache_from_source(path)
565 cached_path = importlib.util.cache_from_source(path)
581 cached_path = importlib.util.cache_from_source(path)
618 os.rename(importlib.util.cache_from_source(path), bytecode_only)
640 compiled_name = importlib.util.cache_from_source(file_name)
881 pyc_path = importlib.util.cache_from_source(self.source)
898 pyc_path = importlib.util.cache_from_source(self.source)
908 pyc_file = importlib.util.cache_from_source(self.source)
937 pyc_file = importlib.util.cache_from_source(TESTFN + '.py')
[all …]
/third_party/python/Lib/distutils/tests/
Dtest_install_lib.py48 pyc_file = importlib.util.cache_from_source('foo.py', optimization='')
49 pyc_opt_file = importlib.util.cache_from_source('foo.py',
/third_party/python/Lib/
Dpy_compile.py129 cfile = importlib.util.cache_from_source(file,
132 cfile = importlib.util.cache_from_source(file)
Dimp.py73 def cache_from_source(path, debug_override=None): function
89 return util.cache_from_source(path, debug_override)
Dcompileall.py212 cfile = (importlib.util.cache_from_source(
216 cfile = importlib.util.cache_from_source(fullname)
Dzipfile.py2122 pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='')
2123 pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1)
2124 pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2)
/third_party/python/Lib/distutils/command/
Dinstall_lib.py168 bytecode_files.append(importlib.util.cache_from_source(
171 bytecode_files.append(importlib.util.cache_from_source(
Dbuild_py.py316 outputs.append(importlib.util.cache_from_source(
319 outputs.append(importlib.util.cache_from_source(
/third_party/python/Lib/test/support/
Dimport_helper.py50 unlink(importlib.util.cache_from_source(source, optimization=opt))
60 pyc_file = importlib.util.cache_from_source(source)
/third_party/python/Lib/distutils/
Dutil.py450 cfile = importlib.util.cache_from_source(
453 cfile = importlib.util.cache_from_source(file)
/third_party/python/Lib/importlib/
Dutil.py9 from ._bootstrap_external import cache_from_source
D_bootstrap_external.py437 def cache_from_source(path, debug_override=None, *, optimization=None): function
570 return cache_from_source(filename)
1021 bytecode_path = cache_from_source(source_path)
/third_party/python/Doc/library/
Dimp.rst201 .. function:: cache_from_source(path, debug_override=None)
219 Use :func:`importlib.util.cache_from_source` instead.

12