[Python-checkins] CVS: python/dist/src/Include object.h,2.93,2.94

Fred L. Drake fdrake@users.sourceforge.net
Fri, 05 Oct 2001 14:58:13 -0700


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

Modified Files:
	object.h 
Log Message:
PyObject_ClearWeakRefs() is now a real function instead of a function pointer;
the implementation is in Objects/weakrefobject.c.


Index: object.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/object.h,v
retrieving revision 2.93
retrieving revision 2.94
diff -C2 -d -r2.93 -r2.94
*** object.h	2001/10/02 21:24:56	2.93
--- object.h	2001/10/05 21:58:11	2.94
***************
*** 346,350 ****
  extern DL_IMPORT(int) PyNumber_CoerceEx(PyObject **, PyObject **);
  
! extern DL_IMPORT(void) (*PyObject_ClearWeakRefs)(PyObject *);
  
  /* A slot function whose address we need to compare */
--- 346,350 ----
  extern DL_IMPORT(int) PyNumber_CoerceEx(PyObject **, PyObject **);
  
! extern DL_IMPORT(void) PyObject_ClearWeakRefs(PyObject *);
  
  /* A slot function whose address we need to compare */