(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine)
| 1163 | |
| 1164 | #[inline] |
| 1165 | fn compactlongs_guard(lhs: &PyObject, rhs: &PyObject, vm: &VirtualMachine) -> bool { |
| 1166 | compact_int_from_obj(lhs, vm).is_some() && compact_int_from_obj(rhs, vm).is_some() |
| 1167 | } |
| 1168 | |
| 1169 | macro_rules! bitwise_longs_action { |
| 1170 | ($name:ident, $op:tt) => { |
nothing calls this directly
no test coverage detected