2017-07-31 17:42:55 +00:00
|
|
|
// Copyright (c) 2017-present PyO3 Project and Contributors
|
|
|
|
|
2017-08-03 18:55:39 +00:00
|
|
|
//! The `PyO3` Prelude
|
2017-07-31 17:42:55 +00:00
|
|
|
//!
|
|
|
|
//! 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 class::*;
|
|
|
|
pub use objects::*;
|
|
|
|
pub use objectprotocol::ObjectProtocol;
|
|
|
|
pub use object::PyObject;
|
2017-08-03 22:01:52 +00:00
|
|
|
pub use noargs::NoArgs;
|
2017-07-31 17:42:55 +00:00
|
|
|
pub use python::{Python, ToPyPointer, IntoPyPointer};
|
|
|
|
pub use err::{PyErr, PyErrValue, PyResult, PyDowncastError, PyErrArguments};
|
|
|
|
pub use pythonrun::GILGuard;
|
2017-08-08 07:27:33 +00:00
|
|
|
pub use typeob::PyRawObject;
|
2017-07-31 17:42:55 +00:00
|
|
|
pub use instance::{PyToken, PyObjectWithToken, AsPyRef, Py, PyNativeType};
|
2018-01-19 17:04:42 +00:00
|
|
|
pub use conversion::{FromPyObject, PyTryFrom, PyTryInto,
|
2017-07-31 17:42:55 +00:00
|
|
|
ToPyObject, ToBorrowedObject, IntoPyObject, IntoPyTuple};
|