aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 2e6fed580de..ecb5bf96555 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1761,9 +1761,6 @@ PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals,
}
allargs = newargs;
}
- for (int i = 0; i < kwcount; i++) {
- PyTuple_SET_ITEM(kwnames, i, Py_NewRef(kws[2*i]));
- }
PyFrameConstructor constr = {
.fc_globals = globals,
.fc_builtins = builtins,