(&self)
| 1432 | |
| 1433 | #[inline(always)] |
| 1434 | pub fn class(&self) -> &Py<PyType> { |
| 1435 | self.0.typ.deref() |
| 1436 | } |
| 1437 | |
| 1438 | pub fn set_class(&self, typ: PyTypeRef, vm: &VirtualMachine) { |
| 1439 | self.0.typ.swap_to_temporary_refs(typ, vm); |
no test coverage detected