diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-25 21:48:14 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-25 21:48:14 (GMT) |
commit | 78dc825a41fefd8f219684c3bb1c452296a622e1 (patch) | |
tree | 0a1dfff4602d16fcd552046afc0263240f771e86 /Modules/pyexpat.c | |
parent | be30c6b900ca42806f59be8d28b332bff08f8a09 (diff) | |
download | cpython-78dc825a41fefd8f219684c3bb1c452296a622e1.zip cpython-78dc825a41fefd8f219684c3bb1c452296a622e1.tar.gz cpython-78dc825a41fefd8f219684c3bb1c452296a622e1.tar.bz2 |
Fix arguments for PyFrame_New(). The previous checkin used the wrong
arguments, which were based on an interim development API.
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r-- | Modules/pyexpat.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; |