Home
last modified time | relevance | path

Searched refs:CommandCompiler (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Doc/library/
Dcodeop.rst63 .. class:: CommandCompiler()
71 :class:`CommandCompiler` are new in Python 2.2. If you want to enable the
76 from codeop import CommandCompiler
77 compile_command = CommandCompiler()
78 del CommandCompiler
86 from codeop import CommandCompiler
88 def CommandCompiler():
92 and then call ``CommandCompiler`` every time you need a fresh compiler object.
/external/python/cpython2/Lib/
Dcode.py10 from codeop import CommandCompiler, compile_command
49 self.compile = CommandCompiler()
Dcodeop.py139 class CommandCompiler: class