]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix arguments for PyFrame_New(). The previous checkin used the wrong
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 25 Jan 2001 21:48:14 +0000 (21:48 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 25 Jan 2001 21:48:14 +0000 (21:48 +0000)
arguments, which were based on an interim development API.

Modules/pyexpat.c

index 6778a9ca92de1cd6f95eec7651ec43cd0f093690..f20adcb4f315787773a125ae92c0a717e407b569 100644 (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;