Searched defs:py_compile (Results 1 - 25 of 25) sorted by relevance

/external/python/cpython2/Lib/
H A Dcompileall.py11 See module py_compile for details of the actual byte-compilation.
15 import py_compile namespace
99 ok = py_compile.compile(fullname, None, dfile, True)
100 except py_compile.PyCompileError,err:
H A Dzipfile.py1460 import py_compile namespace
1464 py_compile.compile(file_py, file_pyc, None, True)
1465 except py_compile.PyCompileError,err:
/external/python/cpython2/Lib/test/
H A Dtest_py_compile.py3 import py_compile namespace
34 py_compile.compile(self.source_path, self.pyc_path)
39 py_compile.compile(os.path.basename(self.source_path),
44 py_compile.compile(os.path.relpath(self.source_path),
H A Dtest_compileall.py4 import py_compile namespace
38 py_compile.compile(self.source_path)
H A Dscript_helper.py10 import py_compile namespace
115 py_compile.compile(script_name, doraise=True)
H A Dtest_pydoc.py6 import py_compile namespace
412 py_compile.compile(init_path)
424 py_compile.compile(init_path)
H A Dtest_sundry.py64 import py_compile namespace
H A Dtest_import.py5 import py_compile namespace
207 py_compile.compile(filename)
482 py_compile.compile(self.file_name, dfile="another_module.py")
490 py_compile.compile(self.file_name, dfile=target)
498 py_compile.compile(self.file_name)
/external/python/cpython3/Lib/
H A Dcompileall.py11 See module py_compile for details of the actual byte-compilation.
16 import py_compile namespace
148 ok = py_compile.compile(fullname, cfile, dfile, True,
150 except py_compile.PyCompileError as err:
H A Dzipfile.py1879 import py_compile namespace
1883 py_compile.compile(file, doraise=True, optimize=optimize)
1884 except py_compile.PyCompileError as err:
/external/python/cpython3/Lib/test/support/
H A Dscript_helper.py11 import py_compile namespace
239 init_name = py_compile.compile(init_name, doraise=True)
240 script_name = py_compile.compile(script_name, doraise=True)
/external/python/cpython3/Lib/test/
H A Dtest_py_compile.py3 import py_compile namespace
37 py_compile.compile(self.source_path, self.pyc_path)
51 py_compile.compile(self.source_path, self.pyc_path)
59 py_compile.compile(self.source_path, os.devnull)
62 py_compile.compile(self.source_path)
67 py_compile.compile(os.path.basename(self.source_path),
73 py_compile.compile(os.path.relpath(self.source_path),
90 py_compile.compile(self.source_path, self.pyc_path)
97 self.assertIsNone(py_compile.compile(bad_coding, doraise=False))
104 # py_compile fo
[all...]
H A Dtest_modulefinder.py4 import py_compile namespace
308 py_compile.compile(source_path, cfile=bytecode_path)
H A Dtest_multiprocessing_main_handling.py13 import py_compile namespace
189 py_compile.compile(script_name, doraise=True)
206 py_compile.compile(script_name, doraise=True)
224 compiled_name = py_compile.compile(script_name, doraise=True)
266 compiled_name = py_compile.compile(script_name, doraise=True)
H A Dtest_cmd_line_script.py11 import py_compile namespace
234 py_compile.compile(script_name, doraise=True)
251 py_compile.compile(script_name, doraise=True)
273 compiled_name = py_compile.compile(script_name, doraise=True)
325 compiled_name = py_compile.compile(script_name, doraise=True)
H A Dtest_compileall.py7 import py_compile namespace
60 py_compile.compile(self.source_path)
H A Dtest_runpy.py9 import py_compile namespace
669 compiled_name = py_compile.compile(script_name, doraise=True)
685 compiled_name = py_compile.compile(script_name, doraise=True)
711 compiled_name = py_compile.compile(script_name, doraise=True)
H A Dtest_pydoc.py8 import py_compile namespace
597 py_compile.compile(init_path)
/external/python/cpython2/Tools/nuget/
H A Dmake_zip.py4 import py_compile namespace
133 py_compile.compile(str(s), str(pyc), str(rel), doraise=True, optimize=2)
134 except py_compile.PyCompileError:
/external/python/cpython3/Lib/test/test_importlib/source/
H A Dtest_finder.py8 import py_compile namespace
65 py_compile.compile(mapping[name])
H A Dtest_file_loader.py12 import py_compile namespace
258 py_compile.compile(mapping[name])
459 py_compile.compile(mapping['_temp'])
477 py_compile.compile(mapping['_temp'])
/external/python/cpython3/Tools/importbench/
H A Dimportbench.py14 import py_compile namespace
143 py_compile.compile(mapping[name])
153 py_compile.compile(module.__file__)
/external/python/cpython3/Tools/msi/
H A Dmake_zip.py2 import py_compile namespace
148 py_compile.compile(str(s), str(pyc), str(rel), doraise=True, optimize=2)
149 except py_compile.PyCompileError:
/external/chromium-trace/catapult/third_party/zipfile/
H A Dzipfile_2_7_13.py1460 import py_compile namespace
1464 py_compile.compile(file_py, file_pyc, None, True)
1465 except py_compile.PyCompileError,err:
/external/python/cpython3/Lib/test/test_import/
H A D__init__.py9 import py_compile namespace
153 py_compile.compile(filename)
493 py_compile.compile(self.file_name, dfile="another_module.py")
501 py_compile.compile(self.file_name, dfile=target)
511 py_compile.compile(self.file_name)

Completed in 701 milliseconds