[Python-checkins] python/dist/src/Modules datetimemodule.c,1.61,1.62

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Fri, 16 May 2003 13:02:30 -0700


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

Modified Files:
	datetimemodule.c 
Log Message:
Stopped using the old macro form of _PyObject_Del.


Index: datetimemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/datetimemodule.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** datetimemodule.c	2 May 2003 18:39:55 -0000	1.61
--- datetimemodule.c	16 May 2003 20:02:26 -0000	1.62
***************
*** 2118,2122 ****
  	0,						/* tp_alloc */
  	delta_new,					/* tp_new */
! 	_PyObject_Del,					/* tp_free */
  };
  
--- 2118,2122 ----
  	0,						/* tp_alloc */
  	delta_new,					/* tp_new */
! 	PyObject_Del,					/* tp_free */
  };
  
***************
*** 2671,2675 ****
  	0,						/* tp_alloc */
  	date_new,					/* tp_new */
! 	_PyObject_Del,					/* tp_free */
  };
  
--- 2671,2675 ----
  	0,						/* tp_alloc */
  	date_new,					/* tp_new */
! 	PyObject_Del,					/* tp_free */
  };
  
***************
*** 3442,3446 ****
  	0,					/* tp_alloc */
  	time_new,				/* tp_new */
! 	_PyObject_Del,				/* tp_free */
  };
  
--- 3442,3446 ----
  	0,					/* tp_alloc */
  	time_new,				/* tp_new */
! 	PyObject_Del,				/* tp_free */
  };
  
***************
*** 4463,4467 ****
  	0,					/* tp_alloc */
  	datetime_new,				/* tp_new */
! 	_PyObject_Del,				/* tp_free */
  };
  
--- 4463,4467 ----
  	0,					/* tp_alloc */
  	datetime_new,				/* tp_new */
! 	PyObject_Del,				/* tp_free */
  };