(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)
| 25 | |
| 26 | #[pyfunction] |
| 27 | fn gt(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 28 | a.rich_compare(b, PyComparisonOp::Gt, vm) |
| 29 | } |
| 30 | |
| 31 | #[pyfunction] |
| 32 | fn ge(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected