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

Function PyDictItems_Check

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

Source from the content-addressed store, hash-verified

37
38#[inline(always)]
39pub unsafe fn PyDictItems_Check(op: *mut PyObject) -> c_int {
40 PyObject_TypeCheck(op, &mut PyDictItems_Type)
41}
42
43#[inline(always)]
44pub unsafe fn PyDictValues_Check(op: *mut PyObject) -> c_int {

Callers 1

PyDictViewSet_CheckFunction · 0.85

Calls 1

PyObject_TypeCheckFunction · 0.70

Tested by

no test coverage detected