PyObject_Not method

int PyObject_Not(
  1. Pointer<PyObject> arg0
)

Implementation

int PyObject_Not(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyObject_Not(
    arg0,
  );
}