PyBool_FromLong method

Pointer<PyObject> PyBool_FromLong(
  1. int arg0
)

Implementation

ffi.Pointer<PyObject> PyBool_FromLong(
  int arg0,
) {
  return _PyBool_FromLong(
    arg0,
  );
}