PySet_Pop method

Pointer<PyObject> PySet_Pop(
  1. Pointer<PyObject> set1
)

Implementation

ffi.Pointer<PyObject> PySet_Pop(
  ffi.Pointer<PyObject> set1,
) {
  return _PySet_Pop(
    set1,
  );
}