(instance: PyObjectRef, vm: &VirtualMachine)
| 575 | |
| 576 | #[pymethod(name = "_checkSeekable")] |
| 577 | fn check_seekable(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 578 | check_seekable(&instance, vm) |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | impl Destructor for _IOBase { |
nothing calls this directly
no test coverage detected