rustpython_vm/prelude.rs
1//! The prelude imports the various objects and traits.
2//!
3//! The intention is that one can include `use rustpython_vm::prelude::*`.
4
5pub use crate::{
6 object::{
7 AsObject, Py, PyExact, PyObject, PyObjectRef, PyPayload, PyRef, PyRefExact, PyResult,
8 PyWeakRef,
9 },
10 vm::{Context, Interpreter, Settings, VirtualMachine},
11};