Skip to content

Commit

Permalink
Merge pull request #1950 from indygreg/pymem-use
Browse files Browse the repository at this point in the history
ffi: expose pymem APIs
  • Loading branch information
davidhewitt committed Oct 25, 2021
2 parents f5d1d4f + 604d55c commit 13fc4f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ffi/cpython/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ pub(crate) mod object;
pub(crate) mod pydebug;
#[cfg(all(Py_3_8, not(PyPy)))]
pub(crate) mod pylifecycle;
pub(crate) mod pymem;
pub(crate) mod pystate;
pub(crate) mod pythonrun;
// skipped sysmodule.h
Expand All @@ -44,6 +45,7 @@ pub use self::object::*;
pub use self::pydebug::*;
#[cfg(all(Py_3_8, not(PyPy)))]
pub use self::pylifecycle::*;
pub use self::pymem::*;
pub use self::pystate::*;
pub use self::pythonrun::*;
pub use self::tupleobject::*;
Expand Down

0 comments on commit 13fc4f1

Please sign in to comment.