Skip to content

Commit

Permalink
Merge #3088
Browse files Browse the repository at this point in the history
3088: Define _PyDict_Contains_KnownHash() FFI for CPython 3.10 or later r=messense a=ijl



Co-authored-by: ijl <ijl@mailbox.org>
  • Loading branch information
bors[bot] and ijl authored Apr 10, 2023
2 parents 77fc6e6 + 6ee2174 commit 08e0196
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions newsfragments/3088.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Define `_PyDict_Contains_KnownHash()` FFI for CPython 3.10 or later.
9 changes: 8 additions & 1 deletion pyo3-ffi/src/cpython/dictobject.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ extern "C" {
hash: *mut crate::Py_hash_t,
) -> c_int;
// skipped PyDict_GET_SIZE
// skipped _PyDict_Contains_KnownHash
// skipped _PyDict_ContainsId
pub fn _PyDict_NewPresized(minused: Py_ssize_t) -> *mut PyObject;
// skipped _PyDict_MaybeUntrack
Expand All @@ -63,6 +62,14 @@ extern "C" {
// skipped _PyDictViewObject
// skipped _PyDictView_New
// skipped _PyDictView_Intersect

#[cfg(Py_3_10)]
pub fn _PyDict_Contains_KnownHash(
op: *mut PyObject,
key: *mut PyObject,
hash: crate::Py_hash_t,
) -> c_int;

#[cfg(not(Py_3_10))]
pub fn _PyDict_Contains(mp: *mut PyObject, key: *mut PyObject, hash: Py_ssize_t) -> c_int;
}

0 comments on commit 08e0196

Please sign in to comment.