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

Function PyByteArray_Check

python3-sys/src/bytearrayobject.rs:13–15  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

11
12#[inline(always)]
13pub unsafe fn PyByteArray_Check(op: *mut PyObject) -> c_int {
14 PyObject_TypeCheck(op, &mut PyByteArray_Type)
15}
16
17#[inline(always)]
18pub unsafe fn PyByteArray_CheckExact(op: *mut PyObject) -> c_int {

Callers

nothing calls this directly

Calls 1

PyObject_TypeCheckFunction · 0.70

Tested by

no test coverage detected