(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine)
| 284 | } |
| 285 | |
| 286 | fn __ror__(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 287 | type_::or_(other, zelf, vm) |
| 288 | } |
| 289 | |
| 290 | fn __or__(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 291 | type_::or_(zelf, other, vm) |