PyModule_SetDocString method

int PyModule_SetDocString(
  1. Pointer<PyObject> arg0,
  2. Pointer<Char> arg1
)

Implementation

int PyModule_SetDocString(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<ffi.Char> arg1,
) {
  return _PyModule_SetDocString(
    arg0,
    arg1,
  );
}