(vm: &VirtualMachine)
| 271 | |
| 272 | #[pyattr(name = "error", once)] |
| 273 | fn error_type(vm: &VirtualMachine) -> PyTypeRef { |
| 274 | vm.ctx.new_exception_type( |
| 275 | "termios", |
| 276 | "error", |
| 277 | Some(vec![vm.ctx.exceptions.os_error.to_owned()]), |
| 278 | ) |
| 279 | } |
| 280 | } |
no test coverage detected