(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)
| 20 | |
| 21 | #[pyfunction] |
| 22 | fn le(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 23 | a.rich_compare(b, PyComparisonOp::Le, vm) |
| 24 | } |
| 25 | |
| 26 | #[pyfunction] |
| 27 | fn gt(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected