Module compiler
Source - codegen
- Compile a Python AST or source code into bytecode consumable by RustPython.
- core
- parser
- This crate can be used to parse Python source code into an Abstract
Syntax Tree.
- CodeObject
- Primary container of a single code object. Each python function has
a code object. Also a module has a code object.
- CompileOpts
- LinearLocator
- Converts source code byte-offset to Python convention line and column numbers.
- CompileErrorType
- Mode
- Parse
- Parse Python code string to implementor’s type.
- compile
- Compile a given source code into a bytecode object.
- compile_symtable
- CompileError