(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine)
| 288 | } |
| 289 | |
| 290 | fn __or__(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 291 | type_::or_(zelf, other, vm) |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | pub(crate) fn make_parameters(args: &Py<PyTuple>, vm: &VirtualMachine) -> PyTupleRef { |