pyo3/src/impl_.rs

20 lines
545 B
Rust
Raw Normal View History

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-05-16 09:41:59 +00:00
pub mod deprecations;
pub mod extract_argument;
pub mod freelist;
pub mod frompyobject;
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;
pub mod pyclass;
pub mod pyfunction;
pub mod pymethods;
2021-12-28 01:25:01 +00:00
pub mod pymodule;