Searched refs:byte_compile (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/distutils/command/ |
H A 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 namespace 132 byte_compile(files, optimize=0, 136 byte_compile(files, optimize=self.optimize,
|
H A 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 namespace 384 # XXX this code is essentially the same as the '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/ |
H A D | test_install_lib.py | 47 cmd.byte_compile([f]) 96 # makes sure byte_compile is not used 105 cmd.byte_compile([])
|
H A D | test_util.py | 12 rfc822_escape, byte_compile, 293 # makes sure byte_compile raise a DistutilsError 298 self.assertRaises(DistutilsByteCompileError, byte_compile, [])
|
H A D | test_build_py.py | 160 # makes sure byte_compile is not used 169 cmd.byte_compile([])
|
/third_party/python/Lib/distutils/ |
H A D | util.py | 324 def byte_compile (py_files, function 352 'byte_compile()' figure out to use direct compilation or not (see 397 from distutils.util import byte_compile 405 # 'byte_compile()' method that carefully tacks on a trailing 417 byte_compile(files, optimize=%r, force=%r, 434 # mode simply calls 'byte_compile()' in direct mode, a weird sort of 473 # byte_compile ()
|
Completed in 5 milliseconds