mirror of
https://github.com/python/cpython.git
synced 2026-01-27 13:15:25 +00:00
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:
parent
5cf6394b12
commit
a2777d3a55
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user