Lines Matching full:compile
1 r"""Utilities to compile possibly incomplete Python source code.
4 function compile(), which take program text, a filename and a 'mode'
29 Compile():
31 Instances of this class act like the built-in function compile,
41 __all__ = ["compile_command", "Compile", "CommandCompiler"]
43 # The following flags match the values from Include/cpython/compile.h
64 except SyntaxError: # Let other compile() errors propagate.
86 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT | PyCF_ALLOW_INCOMPLETE_INPUT)
89 r"""Compile a command and determine whether it is incomplete.
109 class Compile: class
110 """Instances of this class behave much like the built-in compile
111 function, but if one is used to compile text containing a future
118 codeob = compile(source, filename, symbol, self.flags, True)
132 self.compiler = Compile()
135 r"""Compile a command and determine whether it is incomplete.