[Python-checkins] CVS: python/dist/src/Include cellobject.h,2.1,2.2

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 28 Feb 2002 15:46:36 -0800


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

Modified Files:
	cellobject.h 
Log Message:
Cells are not VAR objects.

Noted by Jason Orendorff, SF #520768.

Bug fix candidate for 2.1 & 2.2.



Index: cellobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/cellobject.h,v
retrieving revision 2.1
retrieving revision 2.2
diff -C2 -d -r2.1 -r2.2
*** cellobject.h	25 Jan 2001 20:04:14 -0000	2.1
--- cellobject.h	28 Feb 2002 23:46:34 -0000	2.2
***************
*** 8,12 ****
  
  typedef struct {
! 	PyObject_VAR_HEAD
  	PyObject *ob_ref;
  } PyCellObject;
--- 8,12 ----
  
  typedef struct {
! 	PyObject_HEAD
  	PyObject *ob_ref;
  } PyCellObject;