PyObject_Type method

Pointer<PyObject> PyObject_Type(
  1. Pointer<PyObject> o
)

Implementation

ffi.Pointer<PyObject> PyObject_Type(
  ffi.Pointer<PyObject> o,
) {
  return _PyObject_Type(
    o,
  );
}