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

Function PyDictViewSet_Check

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

Source from the content-addressed store, hash-verified

47
48#[inline(always)]
49pub unsafe fn PyDictViewSet_Check(op: *mut PyObject) -> c_int {
50 (PyDictKeys_Check(op) != 0 || PyDictItems_Check(op) != 0) as c_int
51}
52
53#[cfg_attr(windows, link(name = "pythonXY"))]
54extern "C" {

Callers

nothing calls this directly

Calls 2

PyDictKeys_CheckFunction · 0.85
PyDictItems_CheckFunction · 0.85

Tested by

no test coverage detected