Commit 78dc825a authored by Jeremy Hylton's avatar Jeremy Hylton

Fix arguments for PyFrame_New(). The previous checkin used the wrong

arguments, which were based on an interim development API.
parent be30c6b9
......@@ -291,7 +291,6 @@ call_with_frame(PyCodeObject *c, PyObject* func, PyObject* args)
c, /*code*/
tstate->frame->f_globals, /*globals*/
NULL, /*locals*/
0,
NULL); /* closure */
if (f == NULL)
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment