(_zelf: PyRef<Self>, _vm: &VirtualMachine)
| 2084 | |
| 2085 | #[cold] |
| 2086 | fn iter(_zelf: PyRef<Self>, _vm: &VirtualMachine) -> PyResult { |
| 2087 | unreachable!("slot_iter is implemented"); |
| 2088 | } |
| 2089 | |
| 2090 | fn extend_slots(slots: &mut PyTypeSlots) { |
| 2091 | let prev = slots.iter.swap(Some(self_iter)); |
no outgoing calls
no test coverage detected