[Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.36,2.37

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 25 Jan 2001 13:48:17 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv19090/Modules

Modified Files:
	pyexpat.c 
Log Message:
Fix arguments for PyFrame_New().  The previous checkin used the wrong
arguments, which were based on an interim development API.


Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.36
retrieving revision 2.37
diff -C2 -r2.36 -r2.37
*** pyexpat.c	2001/01/25 20:07:56	2.36
--- pyexpat.c	2001/01/25 21:48:14	2.37
***************
*** 292,296 ****
  			tstate->frame->f_globals,	/*globals*/
  			NULL,			/*locals*/
- 			0,
  			NULL);                  /* closure */
  	if (f == NULL)
--- 292,295 ----