[Python-checkins] python/dist/src/Mac/Modules/scrap _Scrapmodule.c,1.2,1.3

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


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

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

Index: _Scrapmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/scrap/_Scrapmodule.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** _Scrapmodule.c	31 Dec 2001 14:51:50 -0000	1.2
--- _Scrapmodule.c	22 May 2002 14:31:48 -0000	1.3
***************
*** 79,83 ****
  {
  	/* Cleanup of self->ob_itself goes here */
! 	PyMem_DEL(self);
  }
  
--- 79,83 ----
  {
  	/* Cleanup of self->ob_itself goes here */
! 	PyObject_DEL(self);
  }