(&self, a: &PyObject, b: &PyObject)
| 76 | impl VirtualMachine { |
| 77 | #[inline] |
| 78 | pub fn bool_eq(&self, a: &PyObject, b: &PyObject) -> PyResult<bool> { |
| 79 | a.rich_compare_bool(b, PyComparisonOp::Eq, self) |
| 80 | } |
| 81 | |
| 82 | pub fn identical_or_equal(&self, a: &PyObject, b: &PyObject) -> PyResult<bool> { |
| 83 | if a.is(b) { |