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

Jack Jansen jackjansen@users.sourceforge.net
Fri, 03 Aug 2001 06:03:26 -0700


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

Modified Files:
	objimpl.h 
Log Message:
Removed duplicate definnitions of PyObject_AS_GC and PyObject_FROM_GC (occurred only if GC was off).

Index: objimpl.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/objimpl.h,v
retrieving revision 2.35
retrieving revision 2.36
diff -C2 -d -r2.35 -r2.36
*** objimpl.h	2001/08/02 04:15:00	2.35
--- objimpl.h	2001/08/03 13:03:24	2.36
***************
*** 239,244 ****
  #define PyType_IS_GC(t) 0
  #define PyObject_IS_GC(o) 0
- #define PyObject_AS_GC(o) (o)
- #define PyObject_FROM_GC(o) (o)
  #define PyType_BASICSIZE(t) ((t)->tp_basicsize)
  #define PyType_SET_BASICSIZE(t, s) ((t)->tp_basicsize = (s))
--- 239,242 ----