(&self)
| 3613 | |
| 3614 | #[pygetset] |
| 3615 | fn eof(&self) -> bool { |
| 3616 | let pending = unsafe { BIO_ctrl_pending(self.bio) }; |
| 3617 | pending == 0 && self.eof_written.load() |
| 3618 | } |
| 3619 | |
| 3620 | #[pymethod] |
| 3621 | fn read(&self, size: OptionalArg<i32>, vm: &VirtualMachine) -> PyResult<Vec<u8>> { |
nothing calls this directly
no test coverage detected