(&self, s: PyStrRef)
| 86 | impl BootstrapStderr { |
| 87 | #[pymethod] |
| 88 | fn write(&self, s: PyStrRef) -> PyResult<usize> { |
| 89 | let bytes = s.as_bytes(); |
| 90 | let _ = std::io::stderr().write_all(bytes); |
| 91 | Ok(bytes.len()) |
| 92 | } |
| 93 | |
| 94 | #[pymethod] |
| 95 | fn flush(&self) -> PyResult<()> { |
no test coverage detected