//! Compile a Python AST or source code into bytecode consumable by RustPython. #![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")] #![doc(html_root_url = "https://docs.rs/rustpython-compiler/")] #[macro_use] extern crate log; type IndexMap = indexmap::IndexMap; type IndexSet = indexmap::IndexSet; pub mod compile; pub mod error; pub mod ir; pub mod mode; pub mod symboltable;