(&self, vm: &VirtualMachine)
| 696 | |
| 697 | #[pymethod] |
| 698 | fn __reduce__(&self, vm: &VirtualMachine) -> PyTupleRef { |
| 699 | let func = builtins_iter(vm); |
| 700 | self.internal.lock().reduce( |
| 701 | func, |
| 702 | |x| x.clone().into(), |
| 703 | |vm| vm.ctx.new_list(Vec::new()).into(), |
| 704 | vm, |
| 705 | ) |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | impl PyListIterator { |
nothing calls this directly
no test coverage detected