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-04-17 21:22:06 +00:00
|
|
|
|
2021-05-16 09:41:59 +00:00
|
|
|
pub mod deprecations;
|
2021-12-23 23:33:51 +00:00
|
|
|
pub mod extract_argument;
|
2021-05-16 23:31:05 +00:00
|
|
|
pub mod freelist;
|
2021-12-22 00:29:22 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod frompyobject;
|
2021-12-23 21:17:33 +00:00
|
|
|
pub(crate) mod not_send;
|