(py: Python)
| 328 | ); |
| 329 | |
| 330 | fn overflow_error(py: Python) -> PyErr { |
| 331 | PyErr::new_lazy_init(py.get_type::<exc::OverflowError>(), None) |
| 332 | } |
| 333 | |
| 334 | /// Conversion of Rust `f32` to Python `float`. |
| 335 | impl ToPyObject for f32 { |
nothing calls this directly
no outgoing calls
no test coverage detected