(textio: &mut TextIOData, vm: &VirtualMachine)
| 3003 | |
| 3004 | #[inline] |
| 3005 | fn flush_inner(textio: &mut TextIOData, vm: &VirtualMachine) -> PyResult { |
| 3006 | textio.check_closed(vm)?; |
| 3007 | textio.telling = textio.seekable; |
| 3008 | textio.write_pending(vm)?; |
| 3009 | vm.call_method(&textio.buffer, "flush", ()) |
| 3010 | } |
| 3011 | |
| 3012 | #[pyclass( |
| 3013 | with( |
no test coverage detected