_PyObject_RealIsInstance
(&self, cls: &Self, vm: &VirtualMachine)
| 576 | |
| 577 | // _PyObject_RealIsInstance |
| 578 | pub(crate) fn real_is_instance(&self, cls: &Self, vm: &VirtualMachine) -> PyResult<bool> { |
| 579 | self.object_isinstance(cls, vm) |
| 580 | } |
| 581 | |
| 582 | /// Real isinstance check without going through __instancecheck__ |
| 583 | /// This is equivalent to CPython's _PyObject_RealIsInstance/object_isinstance |
no test coverage detected