summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-10-03 13:58:14 (GMT)
committerGitHub <noreply@github.com>2021-10-03 13:58:14 (GMT)
commita5a56154f14f3f4656a510e8b79e96d06289e654 (patch)
treedc1e534391f7f6d0844293f90866be15654a3917 /Python/bltinmodule.c
parentdc878240dcbb47e660f5ad094deba5381872f2c9 (diff)
downloadcpython-a5a56154f14f3f4656a510e8b79e96d06289e654.zip
cpython-a5a56154f14f3f4656a510e8b79e96d06289e654.tar.gz
cpython-a5a56154f14f3f4656a510e8b79e96d06289e654.tar.bz2
Remove trailing spaces. (GH-28706)
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index d0d3180..1f03816 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -2485,7 +2485,7 @@ builtin_sum_impl(PyObject *module, PyObject *iterable, PyObject *start)
switch (Py_SIZE(item)) {
case -1: b = -(sdigit) ((PyLongObject*)item)->ob_digit[0]; break;
// Note: the continue goes to the top of the "while" loop that iterates over the elements
- case 0: Py_DECREF(item); continue;
+ case 0: Py_DECREF(item); continue;
case 1: b = ((PyLongObject*)item)->ob_digit[0]; break;
default: b = PyLong_AsLongAndOverflow(item, &overflow); break;
}