PyObject_Str method

Pointer<PyObject> PyObject_Str(
  1. Pointer<PyObject> arg0
)

Implementation

ffi.Pointer<PyObject> PyObject_Str(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyObject_Str(
    arg0,
  );
}