HomeSort by relevance Sort by last modified time
    Searched refs:py_compile (Results 26 - 50 of 72) sorted by null

12 3

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
compileall.py 11 See module py_compile for details of the actual byte-compilation.
15 import py_compile
101 ok = py_compile.compile(fullname, None, dfile, True)
102 except py_compile.PyCompileError,err:
  /external/python/cpython3/Lib/
compileall.py 11 See module py_compile for details of the actual byte-compilation.
16 import py_compile
148 ok = py_compile.compile(fullname, cfile, dfile, True,
150 except py_compile.PyCompileError as err:
  /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/cpython3/Tools/msi/
make_zip.py 2 import py_compile
148 py_compile.compile(str(s), str(pyc), str(rel), doraise=True, optimize=2)
149 except py_compile.PyCompileError:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
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/python/cpython2/Lib/test/
test_sundry.py 64 import py_compile
script_helper.py 10 import py_compile
115 py_compile.compile(script_name, doraise=True)
test_import.py 5 import py_compile
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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sundry.py 70 import py_compile
script_helper.py 10 import py_compile
115 py_compile.compile(script_name, doraise=True)
test_import.py 5 import py_compile
207 py_compile.compile(filename)
456 py_compile.compile(self.file_name, dfile="another_module.py")
464 py_compile.compile(self.file_name, dfile=target)
472 py_compile.compile(self.file_name)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sundry.py 70 import py_compile
script_helper.py 10 import py_compile
115 py_compile.compile(script_name, doraise=True)
test_import.py 5 import py_compile
207 py_compile.compile(filename)
456 py_compile.compile(self.file_name, dfile="another_module.py")
464 py_compile.compile(self.file_name, dfile=target)
472 py_compile.compile(self.file_name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 70 import py_compile
script_helper.py 10 import py_compile
115 py_compile.compile(script_name, doraise=True)
test_import.py 5 import py_compile
207 py_compile.compile(filename)
456 py_compile.compile(self.file_name, dfile="another_module.py")
464 py_compile.compile(self.file_name, dfile=target)
472 py_compile.compile(self.file_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sundry.py 70 import py_compile
script_helper.py 10 import py_compile
115 py_compile.compile(script_name, doraise=True)
test_import.py 5 import py_compile
207 py_compile.compile(filename)
456 py_compile.compile(self.file_name, dfile="another_module.py")
464 py_compile.compile(self.file_name, dfile=target)
472 py_compile.compile(self.file_name)
  /external/python/cpython3/Lib/test/test_importlib/source/
test_finder.py 8 import py_compile
65 py_compile.compile(mapping[name])
  /external/python/cpython3/Lib/test/
test_cmd_line_script.py 11 import py_compile
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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
util.py 444 with the standard py_compile module, or indirectly by writing a
522 # "Direct" byte-compilation: use the py_compile module to compile
527 from py_compile import compile
535 # Terminology from the py_compile module:

Completed in 1193 milliseconds

12 3