(&self)
| 568 | |
| 569 | #[inline(always)] |
| 570 | fn class(&self) -> &Py<PyType> { |
| 571 | self.as_object().class() |
| 572 | } |
| 573 | |
| 574 | fn get_class_attr(&self, attr_name: &'static PyStrInterned) -> Option<PyObjectRef> { |
| 575 | self.class().get_attr(attr_name) |
no test coverage detected