(&self)
| 871 | impl PyByteArrayIterator { |
| 872 | #[pymethod] |
| 873 | fn __length_hint__(&self) -> usize { |
| 874 | self.internal.lock().length_hint(|obj| obj.__len__()) |
| 875 | } |
| 876 | #[pymethod] |
| 877 | fn __reduce__(&self, vm: &VirtualMachine) -> PyTupleRef { |
| 878 | let func = builtins_iter(vm); |
nothing calls this directly
no test coverage detected