PyObject_CallObject method Null safety
Implementation
ffi.Pointer<PyObject> PyObject_CallObject(
ffi.Pointer<PyObject> callable,
ffi.Pointer<PyObject> args,
) {
return _PyObject_CallObject(
callable,
args,
);
}
ffi.Pointer<PyObject> PyObject_CallObject(
ffi.Pointer<PyObject> callable,
ffi.Pointer<PyObject> args,
) {
return _PyObject_CallObject(
callable,
args,
);
}