summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index e211e4f..60a71f9 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1873,14 +1873,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
goto error;
}
- TARGET(STORE_LOCALS) {
- PyObject *locals = POP();
- PyObject *old = f->f_locals;
- Py_XDECREF(old);
- f->f_locals = locals;
- DISPATCH();
- }
-
TARGET(RETURN_VALUE) {
retval = POP();
why = WHY_RETURN;