Searched refs:byte_compile (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/distutils/command/ |
D | install_lib.py | 97 self.byte_compile(outfiles) 118 def byte_compile(self, files): member in install_lib 123 from distutils.util import byte_compile 132 byte_compile(files, optimize=0, 136 byte_compile(files, optimize=self.optimize,
|
D | build_py.py | 95 self.byte_compile(self.get_outputs(include_bytecode=0)) 374 def byte_compile(self, files): member in build_py 379 from distutils.util import byte_compile 388 byte_compile(files, optimize=0, 391 byte_compile(files, optimize=self.optimize, 409 self.byte_compile(self.get_outputs(include_bytecode=0))
|
/third_party/python/Lib/distutils/tests/ |
D | test_install_lib.py | 46 cmd.byte_compile([f]) 103 cmd.byte_compile([])
|
D | test_util.py | 12 rfc822_escape, byte_compile, 295 self.assertRaises(DistutilsByteCompileError, byte_compile, [])
|
D | test_build_py.py | 167 cmd.byte_compile([])
|
/third_party/python/Lib/distutils/ |
D | util.py | 324 def byte_compile (py_files, function
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 1237 .. function:: byte_compile(py_files[, optimize=0, force=0, prefix=None, base_dir=None, verbose=1, d… 1262 and executing it. Normally, you should let :func:`byte_compile` figure out to
|