MCPcopy Index your code
hub / github.com/RustPython/RustPython / __ror__

Method __ror__

crates/vm/src/builtins/genericalias.rs:286–288  ·  view source on GitHub ↗
(zelf: PyObjectRef, other: PyObjectRef, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

or_Function · 0.70

Tested by

no test coverage detected