[Python-checkins] CVS: python/dist/src/Include objimpl.h,2.28,2.29

Barry Warsaw bwarsaw@users.sourceforge.net
Tue, 23 Jan 2001 08:37:25 -0800


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

Modified Files:
	objimpl.h 
Log Message:
Add prototype for PyGC_Dump() -- but only inside the #ifdef
WITH_CYCLE_GC.



Index: objimpl.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/objimpl.h,v
retrieving revision 2.28
retrieving revision 2.29
diff -C2 -r2.28 -r2.29
*** objimpl.h	2001/01/20 15:50:42	2.28
--- objimpl.h	2001/01/23 16:37:22	2.29
***************
*** 263,266 ****
--- 263,268 ----
  #define PyObject_FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
  
+ extern DL_IMPORT(void) PyGC_Dump(PyGC_Head *);
+ 
  #endif /* WITH_CYCLE_GC */