mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
13 lines
371 B
Rust
13 lines
371 B
Rust
//! Compile a Python AST or source code into bytecode consumable by RustPython or
|
|
//! (eventually) CPython.
|
|
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png")]
|
|
#![doc(html_root_url = "https://docs.rs/rustpython-compiler/")]
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
pub mod compile;
|
|
pub mod error;
|
|
pub mod mode;
|
|
pub mod symboltable;
|