Remove a redundant statement from halfbinop().
diff --git a/Objects/classobject.c b/Objects/classobject.c
index b6052a0..27a82f9 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -1110,7 +1110,6 @@
 				return *r_result == NULL ? -1 : 0;
 			}
 		}
-		w = PyTuple_GetItem(coerced, 1);
 	}
 	func = PyObject_GetAttrString(v, opname);
 	if (func == NULL) {