summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-tokenize.c2
-rw-r--r--Python/bltinmodule.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Python/Python-tokenize.c b/Python/Python-tokenize.c
index 2933b5b7b1..fa71328255 100644
--- a/Python/Python-tokenize.c
+++ b/Python/Python-tokenize.c
@@ -150,7 +150,7 @@ static PyMethodDef tokenize_methods[] = {
};
static PyModuleDef_Slot tokenizemodule_slots[] = {
- {Py_mod_exec, tokenizemodule_exec},
+ {Py_mod_exec, tokenizemodule_exec},
{0, NULL}
};
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index d0d31805b3..1f03816689 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;
}