[Python-checkins] CVS: python/dist/src/Objects funcobject.c,2.37.4.8,2.37.4.9

Tim Peters tim_one@users.sourceforge.net
Mon, 02 Jul 2001 18:09:15 -0700


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

Modified Files:
      Tag: descr-branch
	funcobject.c 
Log Message:
Believe it or not, Windows won't compile with a redundant semicolon after
PyObject_HEAD.


Index: funcobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/funcobject.c,v
retrieving revision 2.37.4.8
retrieving revision 2.37.4.9
diff -C2 -r2.37.4.8 -r2.37.4.9
*** funcobject.c	2001/07/03 00:48:14	2.37.4.8
--- funcobject.c	2001/07/03 01:09:13	2.37.4.9
***************
*** 379,383 ****
  
  typedef struct {
! 	PyObject_HEAD;
  	PyObject *cm_callable;
  } classmethod;
--- 379,383 ----
  
  typedef struct {
! 	PyObject_HEAD
  	PyObject *cm_callable;
  } classmethod;