(&self)
| 644 | impl PyTupleIterator { |
| 645 | #[pymethod] |
| 646 | fn __length_hint__(&self) -> usize { |
| 647 | self.internal.lock().length_hint(|obj| obj.len()) |
| 648 | } |
| 649 | |
| 650 | #[pymethod] |
| 651 | fn __setstate__(&self, state: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected