1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#![allow(
clippy::wrong_self_convention,
clippy::let_and_return,
clippy::implicit_hasher
)]
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate lazy_static;
extern crate lexical;
#[macro_use]
extern crate log;
#[macro_use]
extern crate maplit;
#[macro_use]
extern crate rustpython_derive;
extern crate self as rustpython_vm;
pub use rustpython_derive::*;
use proc_macro_hack::proc_macro_hack;
#[proc_macro_hack]
pub use rustpython_derive::py_compile_bytecode;
#[macro_use]
pub mod macros;
mod builtins;
pub mod cformat;
mod dictdatatype;
#[cfg(feature = "rustpython-compiler")]
pub mod eval;
mod exceptions;
pub mod format;
pub mod frame;
mod frozen;
pub mod function;
pub mod import;
pub mod obj;
pub mod py_serde;
mod pyhash;
pub mod pyobject;
pub mod stdlib;
mod sysmodule;
mod traceback;
pub mod util;
mod version;
mod vm;
pub use self::exceptions::print_exception;
pub use self::vm::VirtualMachine;
pub use rustpython_bytecode::*;
#[doc(hidden)]
pub mod __exports {
pub use bincode;
}