HomeSort by relevance Sort by last modified time
    Searched refs:py_compile (Results 1 - 25 of 42) sorted by null

1 2

  /external/libcap-ng/libcap-ng-0.7/
py-compile 120 import sys, os, py_compile
133 py_compile.compile(filepath, filepath + 'c', path)
138 import sys, os, py_compile
150 py_compile.compile(filepath, filepath + 'o', path)
  /external/python/cpython2/Lib/test/
test_py_compile.py 3 import py_compile
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),
test_compileall.py 4 import py_compile
38 py_compile.compile(self.source_path)
test_sundry.py 64 import py_compile
test_import.py 5 import py_compile
207 py_compile.compile(filename)
481 py_compile.compile(self.file_name, dfile="another_module.py")
489 py_compile.compile(self.file_name, dfile=target)
497 py_compile.compile(self.file_name)
  /external/python/cpython3/Lib/test/
test_py_compile.py 4 import py_compile
75 py_compile.compile(self.source_path, self.pyc_path)
89 py_compile.compile(self.source_path, self.pyc_path)
97 py_compile.compile(self.source_path, os.devnull)
100 py_compile.compile(self.source_path)
105 py_compile.compile(os.path.basename(self.source_path),
111 py_compile.compile(os.path.relpath(self.source_path),
128 py_compile.compile(self.source_path, self.pyc_path)
135 self.assertIsNone(py_compile.compile(bad_coding, doraise=False))
140 py_compile.compile(self.source_path, self.pyc_path
    [all...]
test_modulefinder.py 4 import py_compile
308 py_compile.compile(source_path, cfile=bytecode_path)
test_multiprocessing_main_handling.py 12 import py_compile
198 py_compile.compile(script_name, doraise=True)
215 py_compile.compile(script_name, doraise=True)
233 compiled_name = py_compile.compile(script_name, doraise=True)
275 compiled_name = py_compile.compile(script_name, doraise=True)
  /device/linaro/bootloader/edk2/BaseTools/Tests/
CheckPythonSyntax.py 20 import py_compile
31 py_compile.compile(filename, doraise=True)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_compileall.py 4 import py_compile
39 py_compile.compile(self.source_path)
test_sundry.py 66 import py_compile
script_helper.py 10 import py_compile
109 py_compile.compile(script_name, doraise=True)
test_import.py 4 import py_compile
151 py_compile.compile(filename)
323 py_compile.compile(self.file_name, dfile="another_module.py")
331 py_compile.compile(self.file_name, dfile=target)
339 py_compile.compile(self.file_name)
  /external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
template_expander.py 53 py_compile=True,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
compileall.py 11 See module py_compile for details of the actual byte-compilation.
15 import py_compile
99 ok = py_compile.compile(fullname, None, dfile, True)
100 except py_compile.PyCompileError,err:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
compileall.py 11 See module py_compile for details of the actual byte-compilation.
15 import py_compile
99 ok = py_compile.compile(fullname, None, dfile, True)
100 except py_compile.PyCompileError,err:
  /external/fonttools/
setup.py 16 # Force distutils to use py_compile.compile() function with 'doraise' argument
18 import py_compile
19 orig_py_compile = py_compile.compile
24 py_compile.compile = doraise_py_compile
  /external/python/cpython2/Lib/
compileall.py 11 See module py_compile for details of the actual byte-compilation.
15 import py_compile
99 ok = py_compile.compile(fullname, None, dfile, True)
100 except py_compile.PyCompileError,err:
  /external/python/cpython2/Tools/nuget/
make_zip.py 4 import py_compile
134 py_compile.compile(str(s), str(pyc), str(rel), doraise=True, optimize=2)
135 except py_compile.PyCompileError:
  /external/python/cpython3/Lib/test/support/
script_helper.py 10 import py_compile
248 init_name = py_compile.compile(init_name, doraise=True)
249 script_name = py_compile.compile(script_name, doraise=True)
  /external/python/cpython3/Lib/test/test_importlib/source/
test_file_loader.py 12 import py_compile
249 py_compile.compile(
251 invalidation_mode=py_compile.PycInvalidationMode.CHECKED_HASH,
281 py_compile.compile(
283 invalidation_mode=py_compile.PycInvalidationMode.CHECKED_HASH,
305 py_compile.compile(
307 invalidation_mode=py_compile.PycInvalidationMode.UNCHECKED_HASH,
336 py_compile.compile(
338 invalidation_mode=py_compile.PycInvalidationMode.UNCHECKED_HASH,
384 invalidation_mode=py_compile.PycInvalidationMode.TIMESTAMP)
    [all...]
test_finder.py 8 import py_compile
65 py_compile.compile(mapping[name])
  /external/python/cpython3/Lib/
compileall.py 11 See module py_compile for details of the actual byte-compilation.
16 import py_compile
157 ok = py_compile.compile(fullname, cfile, dfile, True,
160 except py_compile.PyCompileError as err:
261 for mode in py_compile.PycInvalidationMode]
298 invalidation_mode = py_compile.PycInvalidationMode[ivl_mode]
  /external/python/cpython3/Tools/importbench/
importbench.py 14 import py_compile
143 py_compile.compile(mapping[name])
153 py_compile.compile(module.__file__)
  /external/python/cpython2/Lib/test/support/
script_helper.py 10 import py_compile
115 py_compile.compile(script_name, doraise=True)

Completed in 1639 milliseconds

1 2