[Python-checkins] python/dist/src/Mac/Modules/htmlrender HtmlRendermodule.c,1.3,1.4

jackjansen@sourceforge.net jackjansen@sourceforge.net
Wed, 22 May 2002 07:31:50 -0700


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

Modified Files:
	HtmlRendermodule.c 
Log Message:
Replaced lots of PyMem_DEL() calls with PyObject_DEL().

Index: HtmlRendermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/htmlrender/HtmlRendermodule.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HtmlRendermodule.c	8 Dec 2001 18:02:52 -0000	1.3
--- HtmlRendermodule.c	22 May 2002 14:31:48 -0000	1.4
***************
*** 84,88 ****
  {
  	/* Cleanup of self->ob_itself goes here */
! 	PyMem_DEL(self);
  }
  
--- 84,88 ----
  {
  	/* Cleanup of self->ob_itself goes here */
! 	PyObject_DEL(self);
  }