mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
41 lines
739 B
Rust
41 lines
739 B
Rust
#[macro_use]
|
|
extern crate bitflags;
|
|
#[macro_use]
|
|
extern crate log;
|
|
// extern crate env_logger;
|
|
extern crate serde;
|
|
extern crate serde_json;
|
|
|
|
//extern crate eval; use eval::eval::*;
|
|
// use py_code_object::{Function, NativeType, PyCodeObject};
|
|
|
|
// This is above everything else so that the defined macros are available everywhere
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
mod builtins;
|
|
pub mod bytecode;
|
|
pub mod compile;
|
|
pub mod eval;
|
|
mod exceptions;
|
|
mod frame;
|
|
mod import;
|
|
mod objbool;
|
|
mod objdict;
|
|
mod objfloat;
|
|
mod objfunction;
|
|
mod objint;
|
|
mod objlist;
|
|
mod objobject;
|
|
mod objsequence;
|
|
mod objstr;
|
|
mod objtype;
|
|
pub mod pyobject;
|
|
pub mod stdlib;
|
|
mod sysmodule;
|
|
mod traceback;
|
|
mod vm;
|
|
|
|
// pub use self::pyobject::Executor;
|
|
pub use self::vm::VirtualMachine;
|