MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyDictKeys_Check

Function PyDictKeys_Check

python3-sys/src/dictobject.rs:34–36  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

32
33#[inline(always)]
34pub unsafe fn PyDictKeys_Check(op: *mut PyObject) -> c_int {
35 PyObject_TypeCheck(op, &mut PyDictKeys_Type)
36}
37
38#[inline(always)]
39pub unsafe fn PyDictItems_Check(op: *mut PyObject) -> c_int {

Callers 1

PyDictViewSet_CheckFunction · 0.85

Calls 1

PyObject_TypeCheckFunction · 0.70

Tested by

no test coverage detected