Skip to content

Commit

Permalink
Merge pull request #1777 from indygreg/unicode-apis
Browse files Browse the repository at this point in the history
ffi: define some cpython/unicodeobject bindings
  • Loading branch information
davidhewitt committed Aug 14, 2021
2 parents 584de68 + 807c8ee commit eafc75a
Show file tree
Hide file tree
Showing 4 changed files with 609 additions and 145 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 pydebug;
#[cfg(all(Py_3_8, not(PyPy)))]
pub(crate) mod pylifecycle;
pub(crate) mod pystate;
pub(crate) mod unicodeobject;

pub use self::abstract_::*;
#[cfg(not(PyPy))]
Expand All @@ -40,3 +41,4 @@ pub use self::pydebug::*;
#[cfg(all(Py_3_8, not(PyPy)))]
pub use self::pylifecycle::*;
pub use self::pystate::*;
pub use self::unicodeobject::*;

0 comments on commit eafc75a

Please sign in to comment.