From 8f1931754002b0904c62e481d9dcae2f6e1913e2 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 12 Apr 2014 00:20:39 +0100 Subject: py: Remove useless implementations of NOT_EQUAL in binary_op's. I'm pretty sure these are never reached, since NOT_EQUAL is always converted into EQUAL in mp_binary_op. No one should call type.binary_op directly, they should always go through mp_binary_op (or mp_obj_is_equal). --- py/objset.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'py/objset.c') diff --git a/py/objset.c b/py/objset.c index 448f484d5..05d064a04 100644 --- a/py/objset.c +++ b/py/objset.c @@ -411,8 +411,6 @@ STATIC mp_obj_t set_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) { return set_issubset(lhs, rhs); case MP_BINARY_OP_MORE_EQUAL: return set_issuperset(lhs, rhs); - case MP_BINARY_OP_NOT_EQUAL: - return MP_BOOL(set_equal(lhs, rhs) == mp_const_false); case MP_BINARY_OP_IN: { mp_obj_set_t *o = lhs; -- cgit v1.2.3