summaryrefslogtreecommitdiffstats
path: root/Modules/pyexpat.c
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-01-25 21:48:14 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-01-25 21:48:14 (GMT)
commit78dc825a41fefd8f219684c3bb1c452296a622e1 (patch)
tree0a1dfff4602d16fcd552046afc0263240f771e86 /Modules/pyexpat.c
parentbe30c6b900ca42806f59be8d28b332bff08f8a09 (diff)
downloadcpython-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.c1
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;