diff options
| author | Benjamin Peterson <benjamin@python.org> | 2013-05-12 18:16:06 -0500 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2013-05-12 18:16:06 -0500 |
| commit | 70930d4ba3c03001518c8b690fcbe54a41232db0 (patch) | |
| tree | 21c3ffa7854c03987972edfb844adcc50e4724e8 /Python | |
| parent | 00da17a7db8938030d19d521d8f6af3311d4bb17 (diff) | |
| download | cpython-70930d4ba3c03001518c8b690fcbe54a41232db0.tar.gz | |
when an argument is a cell, set the local copy to NULL (see #17927)
Diffstat (limited to 'Python')
| -rw-r--r-- | Python/ceval.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index d6dba56b3c..e211e4fcaa 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3521,18 +3521,14 @@ PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals, if (co->co_cell2arg != NULL && (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG) { c = PyCell_New(GETLOCAL(arg)); - if (c == NULL) - goto fail; - /* Reference the cell from the argument slot, for super(). - See typeobject.c. */ - Py_INCREF(c); - SETLOCAL(arg, c); + /* Clear the local copy. */ + SETLOCAL(arg, NULL); } else { c = PyCell_New(NULL); - if (c == NULL) - goto fail; } + if (c == NULL) + goto fail; SETLOCAL(co->co_nlocals + i, c); } for (i = 0; i < PyTuple_GET_SIZE(co->co_freevars); ++i) { |
