(m: &Bound<'_, PyModule>)
| 69 | |
| 70 | #[pymodule_init] |
| 71 | fn init_jiter_python(m: &Bound<'_, PyModule>) -> PyResult<()> { |
| 72 | m.add("__version__", get_jiter_version())?; |
| 73 | m.add_class::<LosslessFloat>()?; |
| 74 | Ok(()) |
| 75 | } |
| 76 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…