]> granicus.if.org Git - python/commitdiff
Remove a redundant statement from halfbinop().
authorGuido van Rossum <guido@python.org>
Wed, 13 May 1998 22:02:16 +0000 (22:02 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 13 May 1998 22:02:16 +0000 (22:02 +0000)
Objects/classobject.c

index b6052a07583b6de55d7c0f2002cb4c241d974eda..27a82f90e50244a00bd606167e41680dac2c6ae7 100644 (file)
@@ -1110,7 +1110,6 @@ halfbinop(v, w, opname, r_result, thisfunc, swapped)
                                return *r_result == NULL ? -1 : 0;
                        }
                }
-               w = PyTuple_GetItem(coerced, 1);
        }
        func = PyObject_GetAttrString(v, opname);
        if (func == NULL) {