(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine)
| 1214 | |
| 1215 | #[inline] |
| 1216 | fn nonzero_compactlong_float_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
| 1217 | compactlong_float_guard(lhs, rhs, vm) && exact_float_from_obj(rhs, vm).is_some_and(|f| f != 0.0) |
| 1218 | } |
| 1219 | |
| 1220 | macro_rules! long_float_action { |
| 1221 | ($name:ident, $op:tt) => { |
nothing calls this directly
no test coverage detected