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;
|
2022-05-09 17:15:43 +00:00
|
|
|
pub mod ghost;
|
2021-12-23 21:17:33 +00:00
|
|
|
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)]
|
2021-12-30 12:29:42 +00:00
|
|
|
pub mod pyclass;
|
2022-01-04 22:58:33 +00:00
|
|
|
#[doc(hidden)]
|
2022-01-06 23:21:06 +00:00
|
|
|
pub mod pyfunction;
|
|
|
|
#[doc(hidden)]
|
2022-01-04 22:58:33 +00:00
|
|
|
pub mod pymethods;
|
2021-12-28 01:25:01 +00:00
|
|
|
pub mod pymodule;
|