pyo3/src/impl_.rs

11 lines
379 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 freelist;
#[doc(hidden)]
pub mod frompyobject;