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

Function PyFrame_Check

python27-sys/src/frameobject.rs:62–64  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

60
61#[inline]
62pub unsafe fn PyFrame_Check(op: *mut PyObject) -> c_int {
63 ((*op).ob_type == &mut PyFrame_Type) as c_int
64}
65
66ignore! {
67 #[inline]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected