(&self)
| 202 | |
| 203 | #[pygetset] |
| 204 | fn errors(&self) -> String { |
| 205 | if self.fd == 2 { |
| 206 | "backslashreplace" |
| 207 | } else { |
| 208 | "strict" |
| 209 | } |
| 210 | .to_owned() |
| 211 | } |
| 212 | |
| 213 | #[pygetset(name = "name")] |
| 214 | fn name_prop(&self) -> String { |
no test coverage detected