PyImport_FixupExtensionObject method

int PyImport_FixupExtensionObject(
  1. Pointer<PyObject> arg0,
  2. Pointer<PyObject> arg1,
  3. Pointer<PyObject> arg2,
  4. Pointer<PyObject> arg3,
)

Implementation

int PyImport_FixupExtensionObject(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
  ffi.Pointer<PyObject> arg2,
  ffi.Pointer<PyObject> arg3,
) {
  return _PyImport_FixupExtensionObject(
    arg0,
    arg1,
    arg2,
    arg3,
  );
}