(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine)
| 1188 | |
| 1189 | #[inline] |
| 1190 | fn nonzero_float_compactlong_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
| 1191 | float_compactlong_guard(lhs, rhs, vm) && compact_int_from_obj(rhs, vm).is_some_and(|v| v != 0) |
| 1192 | } |
| 1193 | |
| 1194 | macro_rules! float_long_action { |
| 1195 | ($name:ident, $op:tt) => { |
nothing calls this directly
no test coverage detected