(&self)
| 684 | impl PyListIterator { |
| 685 | #[pymethod] |
| 686 | fn __length_hint__(&self) -> usize { |
| 687 | self.internal.lock().length_hint(|obj| obj.__len__()) |
| 688 | } |
| 689 | |
| 690 | #[pymethod] |
| 691 | fn __setstate__(&self, state: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected