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

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 15 Oct 2001 15:03:33 -0700


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

Modified Files:
	object.h 
Log Message:
Get rid of __defined__ and tp_defined -- there's no need to
distinguish __dict__ and __defined__ any more.  In the C structure,
tp_cache takes its place -- but this hasn't been implemented yet.



Index: object.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/object.h,v
retrieving revision 2.96
retrieving revision 2.97
diff -C2 -d -r2.96 -r2.97
*** object.h	2001/10/15 21:05:10	2.96
--- object.h	2001/10/15 22:03:31	2.97
***************
*** 289,293 ****
  	PyObject *tp_bases;
  	PyObject *tp_mro; /* method resolution order */
! 	PyObject *tp_defined;
  	PyObject *tp_subclasses;
  	PyObject *tp_weaklist;
--- 289,293 ----
  	PyObject *tp_bases;
  	PyObject *tp_mro; /* method resolution order */
! 	PyObject *tp_cache;
  	PyObject *tp_subclasses;
  	PyObject *tp_weaklist;