(zelf: PyObjectRef, vm: &VirtualMachine)
| 598 | |
| 599 | impl Iterable for _IOBase { |
| 600 | fn slot_iter(zelf: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 601 | check_closed(&zelf, vm)?; |
| 602 | Ok(zelf) |
| 603 | } |
| 604 | |
| 605 | fn iter(_zelf: PyRef<Self>, _vm: &VirtualMachine) -> PyResult { |
| 606 | unreachable!("slot_iter is implemented") |
nothing calls this directly
no test coverage detected