# Functions
Compile(src, srcDesc, compileMode, flags, dont_inherit) -> code object
Compile the source string (a Python module, statement or expression) into a code object that can be executed.
Compile(source, filename, mode, flags, dont_inherit) -> code object
Compile the source string (a Python module, statement or expression) into a code object that can be executed by exec() or eval().
# Type aliases
Resolved or unresolved instruction stream.