(self, other: PyObjectRef, vm: &VirtualMachine)
| 480 | } |
| 481 | |
| 482 | fn __ior__(self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult<Self> { |
| 483 | self.merge_object(other, vm)?; |
| 484 | Ok(self) |
| 485 | } |
| 486 | |
| 487 | fn __ror__(self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 488 | let other_dict: Result<Self, _> = other.downcast(); |