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

Function PyComplex_Check

python27-sys/src/complexobject.rs:42–44  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

40
41#[inline(always)]
42pub unsafe fn PyComplex_Check(op: *mut PyObject) -> c_int {
43 PyObject_TypeCheck(op, &mut PyComplex_Type)
44}
45
46#[inline(always)]
47pub unsafe fn PyComplex_CheckExact(op: *mut PyObject) -> c_int {

Callers

nothing calls this directly

Calls 1

PyObject_TypeCheckFunction · 0.70

Tested by

no test coverage detected