(instance: PyObjectRef, vm: &VirtualMachine)
| 560 | |
| 561 | #[pymethod(name = "_checkClosed")] |
| 562 | fn check_closed(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 563 | check_closed(&instance, vm) |
| 564 | } |
| 565 | |
| 566 | #[pymethod(name = "_checkReadable")] |
| 567 | fn check_readable(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
no test coverage detected