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

Function PyGen_Check

python27-sys/src/genobject.rs:28–30  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

26
27#[inline(always)]
28pub unsafe fn PyGen_Check(op: *mut PyObject) -> c_int {
29 PyObject_TypeCheck(op, &mut PyGen_Type)
30}
31
32#[inline(always)]
33pub unsafe fn PyGen_CheckExact(op: *mut PyObject) -> c_int {

Callers

nothing calls this directly

Calls 1

PyObject_TypeCheckFunction · 0.70

Tested by

no test coverage detected