pyo3/src/impl_.rs

22 lines
579 B
Rust
Raw Normal View History

2021-09-13 20:58:15 +00:00
//! Internals of PyO3 which are accessed by code expanded from PyO3's procedural macros.
//!
//! Usage of any of these APIs in downstream code is implicitly acknowledging that these
//! APIs may may change at any time without documentation in the CHANGELOG and without
//! breaking semver guarantees.
2021-05-16 09:41:59 +00:00
pub mod deprecations;
pub mod extract_argument;
pub mod freelist;
#[doc(hidden)]
pub mod frompyobject;
pub mod ghost;
pub(crate) mod not_send;
2022-08-11 20:59:33 +00:00
pub mod panic;
2021-12-28 01:25:01 +00:00
#[doc(hidden)]
pub mod pyclass;
#[doc(hidden)]
pub mod pyfunction;
#[doc(hidden)]
pub mod pymethods;
2021-12-28 01:25:01 +00:00
pub mod pymodule;