From 78dc825a41fefd8f219684c3bb1c452296a622e1 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Thu, 25 Jan 2001 21:48:14 +0000 Subject: Fix arguments for PyFrame_New(). The previous checkin used the wrong arguments, which were based on an interim development API. --- Modules/pyexpat.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 6778a9c..f20adcb 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; -- cgit v0.12