// Copyright (c) 2017-present PyO3 Project and Contributors
//! A collection of items you most likely want to have in scope when working with pyo3
//!
//! The purpose of this module is to alleviate imports of many common pyo3 traits
//! by adding a glob import to the top of pyo3 heavy modules:
//!
//! ```
//! # #![allow(unused_imports)]
//! use pyo3::prelude::*;
//! ```
pub use crate;
pub use crateGILGuard;
pub use crate;
pub use crate;
pub use cratePyClassInitializer;
pub use cratePython;
pub use crate::;
// PyModule is only part of the prelude because we need it for the pymodule function
pub use crate;
pub use ;