(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)
| 30 | |
| 31 | #[pyfunction] |
| 32 | fn ge(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 33 | a.rich_compare(b, PyComparisonOp::Ge, vm) |
| 34 | } |
| 35 | |
| 36 | #[pyfunction] |
| 37 | fn eq(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected