(value: Error)
| 17 | |
| 18 | impl From<Error> for PyErr { |
| 19 | fn from(value: Error) -> PyErr { |
| 20 | SourceInfoError::new_err(value.0.to_string()) |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | #[pymodule(gil_used = false, name = "error", submodule)] |
nothing calls this directly
no outgoing calls
no test coverage detected