PyList_New method Null safety

Pointer<PyObject> PyList_New (
  1. int size
)

Implementation

ffi.Pointer<PyObject> PyList_New(
  int size,
) {
  return _PyList_New(
    size,
  );
}