(&self, value: Option<PyObjectRef>, vm: &VirtualMachine)
| 2164 | #[cfg(windows)] |
| 2165 | #[pygetset(setter)] |
| 2166 | fn set_winerror(&self, value: Option<PyObjectRef>, vm: &VirtualMachine) { |
| 2167 | self.winerror.swap_to_temporary_refs(value, vm); |
| 2168 | } |
| 2169 | |
| 2170 | #[pygetset] |
| 2171 | fn characters_written(&self, vm: &VirtualMachine) -> PyResult<isize> { |
nothing calls this directly
no test coverage detected