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:
Jeremy Hylton 2001-01-25 21:48:14 +00:00
parent be30c6b900
commit 78dc825a41
1 changed files with 0 additions and 1 deletions

View File

@ -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;