regressing the performance bugfix -- Guido wants the performance bug left
alone, because there can be no guarantee re the semantics of += vs + .
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 718b603..0309f1de 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1840,7 +1840,7 @@
 			}
 			break;
 		}
-		temp = PyNumber_InPlaceAdd(result, item);
+		temp = PyNumber_Add(result, item);
 		Py_DECREF(result);
 		Py_DECREF(item);
 		result = temp;