(&self, vm: &VirtualMachine)
| 656 | |
| 657 | #[pymethod] |
| 658 | fn __reduce__(&self, vm: &VirtualMachine) -> PyTupleRef { |
| 659 | let func = builtins_iter(vm); |
| 660 | self.internal.lock().reduce( |
| 661 | func, |
| 662 | |x| x.clone().into(), |
| 663 | |vm| vm.ctx.empty_tuple.clone().into(), |
| 664 | vm, |
| 665 | ) |
| 666 | } |
| 667 | } |
| 668 | |
| 669 | impl PyTupleIterator { |
nothing calls this directly
no test coverage detected