(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine)
| 1182 | |
| 1183 | #[inline] |
| 1184 | fn float_compactlong_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
| 1185 | exact_float_from_obj(lhs, vm).is_some_and(|f| !f.is_nan()) |
| 1186 | && compact_int_from_obj(rhs, vm).is_some() |
| 1187 | } |
| 1188 | |
| 1189 | #[inline] |
| 1190 | fn nonzero_float_compactlong_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
no test coverage detected