(instance: PyObjectRef, vm: &VirtualMachine)
| 483 | |
| 484 | #[pymethod] |
| 485 | fn isatty(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<bool> { |
| 486 | check_closed(&instance, vm)?; |
| 487 | Ok(false) |
| 488 | } |
| 489 | |
| 490 | #[pygetset] |
| 491 | fn closed(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected