Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes
a performance bug in sum(manylists)), same as in 2.3 maintenance branch.
This commit is contained in:
@@ -1840,7 +1840,7 @@ builtin_sum(PyObject *self, PyObject *args)
|
||||
}
|
||||
break;
|
||||
}
|
||||
temp = PyNumber_Add(result, item);
|
||||
temp = PyNumber_InPlaceAdd(result, item);
|
||||
Py_DECREF(result);
|
||||
Py_DECREF(item);
|
||||
result = temp;
|
||||
|
||||
Reference in New Issue
Block a user