Merge pull request #1950 from indygreg/pymem-use
ffi: expose pymem APIs
This commit is contained in:
commit
13fc4f1ea9
|
@ -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
|
||||
|
@ -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::*;
|
||||
|
|
Loading…
Reference in a new issue