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

Neil Schemenauer nascheme@users.sourceforge.net
Mon, 03 Sep 2001 08:44:50 -0700


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

Modified Files:
	objimpl.h 
Log Message:
Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC is
disabled.  Obviously everyone enables the GC. :-)


Index: objimpl.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/objimpl.h,v
retrieving revision 2.37
retrieving revision 2.38
diff -C2 -d -r2.37 -r2.38
*** objimpl.h	2001/08/29 23:49:28	2.37
--- objimpl.h	2001/09/03 15:44:48	2.38
***************
*** 284,289 ****
  #define PyObject_GC_NewVar PyObject_NewVar
  #define PyObject_GC_Del	 PyObject_Del
! #define PyObject_GC_TRACK(op)
! #define PyObject_GC_UNTRACK(op)
  #define PyObject_GC_Track(op)
  #define PyObject_GC_UnTrack(op)
--- 284,289 ----
  #define PyObject_GC_NewVar PyObject_NewVar
  #define PyObject_GC_Del	 PyObject_Del
! #define _PyObject_GC_TRACK(op)
! #define _PyObject_GC_UNTRACK(op)
  #define PyObject_GC_Track(op)
  #define PyObject_GC_UnTrack(op)