From: Guido van Rossum Date: Wed, 13 May 1998 22:02:16 +0000 (+0000) Subject: Remove a redundant statement from halfbinop(). X-Git-Tag: v1.5.2a1~648 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4180cf16499b3e5398e0cd9dc7b027b885a01db3;p=thirdparty%2FPython%2Fcpython.git Remove a redundant statement from halfbinop(). --- diff --git a/Objects/classobject.c b/Objects/classobject.c index b6052a07583b..27a82f90e502 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -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) {