(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine)
| 1208 | |
| 1209 | #[inline] |
| 1210 | fn compactlong_float_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
| 1211 | compact_int_from_obj(lhs, vm).is_some() |
| 1212 | && exact_float_from_obj(rhs, vm).is_some_and(|f| !f.is_nan()) |
| 1213 | } |
| 1214 | |
| 1215 | #[inline] |
| 1216 | fn nonzero_compactlong_float_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
no test coverage detected