(&self)
| 1319 | /// independent from ObjExt (dict/slots). |
| 1320 | #[inline(always)] |
| 1321 | fn weak_ref_list(&self) -> Option<&WeakRefList> { |
| 1322 | self.0.weakref_list_ref() |
| 1323 | } |
| 1324 | |
| 1325 | /// Returns the first weakref in the weakref list, if any. |
| 1326 | pub(crate) fn get_weakrefs(&self) -> Option<PyObjectRef> { |
no test coverage detected