2022-09-06 18:26:23 +00:00
|
|
|
#![allow(missing_docs)]
|
|
|
|
|
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
|
|
|
|
2024-03-06 00:54:45 +00:00
|
|
|
#[cfg(feature = "experimental-async")]
|
2023-11-20 09:39:05 +00:00
|
|
|
pub mod coroutine;
|
2021-05-16 09:41:59 +00:00
|
|
|
pub mod deprecations;
|
2024-03-31 19:55:31 +00:00
|
|
|
pub mod exceptions;
|
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
|
|
|
pub mod frompyobject;
|
2021-12-23 21:17:33 +00:00
|
|
|
pub(crate) mod not_send;
|
2022-08-11 20:59:33 +00:00
|
|
|
pub mod panic;
|
2022-08-20 09:03:13 +00:00
|
|
|
pub mod pycell;
|
2021-12-30 12:29:42 +00:00
|
|
|
pub mod pyclass;
|
2022-01-06 23:21:06 +00:00
|
|
|
pub mod pyfunction;
|
2022-01-04 22:58:33 +00:00
|
|
|
pub mod pymethods;
|
2021-12-28 01:25:01 +00:00
|
|
|
pub mod pymodule;
|
2022-10-25 06:22:36 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod trampoline;
|
2023-09-20 07:38:34 +00:00
|
|
|
pub mod wrap;
|