(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)
| 15 | |
| 16 | #[pyfunction] |
| 17 | fn lt(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 18 | a.rich_compare(b, PyComparisonOp::Lt, vm) |
| 19 | } |
| 20 | |
| 21 | #[pyfunction] |
| 22 | fn le(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected