The compiler Package
(New in 2.2) The compiler package is a implementation of CPython’s compiler in 100% Python. The compiler package reads Python source code, and builds an object structure representing the abstract syntax tree. This structure can be manipulated, and compiled into CPython byte code.
- compiler.ast
- compiler.consts
- compiler.future
- compiler.misc
- compiler.pyassem
- compiler.pycodegen
- compiler.symbols
- compiler.syntax
- compiler.transformer
- compiler.visitor