PyType_IsSubtype method

int PyType_IsSubtype(
  1. Pointer<_typeobject> arg0,
  2. Pointer<_typeobject> arg1
)

Implementation

int PyType_IsSubtype(
  ffi.Pointer<_typeobject> arg0,
  ffi.Pointer<_typeobject> arg1,
) {
  return _PyType_IsSubtype(
    arg0,
    arg1,
  );
}