(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine)
| 162 | } |
| 163 | |
| 164 | fn __or__(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 165 | type_::or_(zelf, other, vm) |
| 166 | } |
| 167 | |
| 168 | #[pymethod] |
| 169 | fn __mro_entries__(zelf: PyRef<Self>, _args: PyObjectRef, vm: &VirtualMachine) -> PyResult { |