1 | #![allow (missing_docs)] |
2 | |
3 | //! Internals of PyO3 which are accessed by code expanded from PyO3's procedural macros. |
4 | //! |
5 | //! Usage of any of these APIs in downstream code is implicitly acknowledging that these |
6 | //! APIs may may change at any time without documentation in the CHANGELOG and without |
7 | //! breaking semver guarantees. |
8 | |
9 | pub mod deprecations; |
10 | pub mod extract_argument; |
11 | pub mod freelist; |
12 | pub mod frompyobject; |
13 | pub(crate) mod not_send; |
14 | pub mod panic; |
15 | pub mod pycell; |
16 | pub mod pyclass; |
17 | pub mod pyfunction; |
18 | pub mod pymethods; |
19 | pub mod pymodule; |
20 | #[doc (hidden)] |
21 | pub mod trampoline; |
22 | pub mod wrap; |
23 | |