(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine)
| 40 | |
| 41 | #[pyfunction] |
| 42 | fn ne(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 43 | a.rich_compare(b, PyComparisonOp::Ne, vm) |
| 44 | } |
| 45 | |
| 46 | #[pyfunction] |
| 47 | fn not_(a: PyObjectRef, vm: &VirtualMachine) -> PyResult<bool> { |
nothing calls this directly
no test coverage detected