(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine)
| 2770 | } |
| 2771 | |
| 2772 | pub(crate) fn or_(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 2773 | union_::or_op(zelf, other, vm) |
| 2774 | } |
| 2775 | |
| 2776 | fn take_next_base(bases: &mut [Vec<PyTypeRef>]) -> Option<PyTypeRef> { |
| 2777 | for base in bases.iter() { |