From: Jeremy Hylton Date: Thu, 25 Jan 2001 21:48:14 +0000 (+0000) Subject: Fix arguments for PyFrame_New(). The previous checkin used the wrong X-Git-Tag: v2.1a2~169 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78dc825a41fefd8f219684c3bb1c452296a622e1;p=thirdparty%2FPython%2Fcpython.git Fix arguments for PyFrame_New(). The previous checkin used the wrong arguments, which were based on an interim development API. --- diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 6778a9ca92de..f20adcb4f315 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -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;