(&self)
| 749 | impl PyBytesIterator { |
| 750 | #[pymethod] |
| 751 | fn __length_hint__(&self) -> usize { |
| 752 | self.internal.lock().length_hint(|obj| obj.len()) |
| 753 | } |
| 754 | |
| 755 | #[pymethod] |
| 756 | fn __reduce__(&self, vm: &VirtualMachine) -> PyTupleRef { |
nothing calls this directly
no test coverage detected