(&self)
| 328 | impl PyStrIterator { |
| 329 | #[pymethod] |
| 330 | fn __length_hint__(&self) -> usize { |
| 331 | self.internal.lock().0.length_hint(|obj| obj.char_len()) |
| 332 | } |
| 333 | |
| 334 | #[pymethod] |
| 335 | fn __setstate__(&self, state: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected