[Python-checkins] python/dist/src/Modules arraymodule.c,2.69,2.70

nascheme@sourceforge.net nascheme@sourceforge.net
Thu, 11 Apr 2002 19:39:59 -0700


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

Modified Files:
	arraymodule.c 
Log Message:
PyObject_Del can now be used as a function designator.


Index: arraymodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v
retrieving revision 2.69
retrieving revision 2.70
diff -C2 -d -r2.69 -r2.70
*** arraymodule.c	1 Apr 2002 03:45:06 -0000	2.69
--- arraymodule.c	12 Apr 2002 02:39:57 -0000	2.70
***************
*** 1720,1724 ****
  	PyType_GenericAlloc,			/* tp_alloc */
  	array_new,				/* tp_new */
! 	_PyObject_Del,				/* tp_free */
  };
  
--- 1720,1724 ----
  	PyType_GenericAlloc,			/* tp_alloc */
  	array_new,				/* tp_new */
! 	PyObject_Del,	                 	/* tp_free */
  };