(instance: PyObjectRef, vm: &VirtualMachine)
| 462 | |
| 463 | #[pymethod] |
| 464 | fn flush(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 465 | // just check if this is closed; if it isn't, do nothing |
| 466 | check_closed(&instance, vm) |
| 467 | } |
| 468 | |
| 469 | #[pymethod] |
| 470 | fn seekable(_self: PyObjectRef) -> bool { |
no test coverage detected