Fix arguments for PyFrame_New(). The previous checkin used the wrong
arguments, which were based on an interim development API.
This commit is contained in:
parent
be30c6b900
commit
78dc825a41
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue