Py_Mangle method

Pointer<PyObject> Py_Mangle(
  1. Pointer<PyObject> p,
  2. Pointer<PyObject> name
)

Implementation

ffi.Pointer<PyObject> Py_Mangle(
  ffi.Pointer<PyObject> p,
  ffi.Pointer<PyObject> name,
) {
  return _Py_Mangle(
    p,
    name,
  );
}