PyNumber_InPlacePower method

Pointer<PyObject> PyNumber_InPlacePower(
  1. Pointer<PyObject> o1,
  2. Pointer<PyObject> o2,
  3. Pointer<PyObject> o3
)

Implementation

ffi.Pointer<PyObject> PyNumber_InPlacePower(
  ffi.Pointer<PyObject> o1,
  ffi.Pointer<PyObject> o2,
  ffi.Pointer<PyObject> o3,
) {
  return _PyNumber_InPlacePower(
    o1,
    o2,
    o3,
  );
}