(&self, vm: &VirtualMachine)
| 342 | |
| 343 | #[pymethod] |
| 344 | fn __reduce__(&self, vm: &VirtualMachine) -> PyTupleRef { |
| 345 | let func = builtins_iter(vm); |
| 346 | self.internal.lock().0.reduce( |
| 347 | func, |
| 348 | |x| x.clone().into(), |
| 349 | |vm| vm.ctx.empty_str.to_owned().into(), |
| 350 | vm, |
| 351 | ) |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | impl SelfIter for PyStrIterator {} |
nothing calls this directly
no test coverage detected