Similar to PySys_WriteStderr in CPython. # Usage ```rust,ignore writeln!(sys::PyStderr(vm), "foo bar baz :)"); ``` Unlike writing to a `std::io::Write` with the `write[ln]!()` macro, there's no error condition here; this is intended to be a replacement for the `eprint[ln]!()` macro, so `write!()`-ing to PyStderr just returns `()`.
| 1874 | /// this is intended to be a replacement for the `eprint[ln]!()` macro, so `write!()`-ing to PyStderr just |
| 1875 | /// returns `()`. |
| 1876 | pub struct PyStderr<'vm>(pub &'vm VirtualMachine); |
| 1877 | |
| 1878 | impl PyStderr<'_> { |
| 1879 | pub fn write_fmt(&self, args: core::fmt::Arguments<'_>) { |
no outgoing calls
no test coverage detected