Mailing List Archive

CVS: python/dist/src/Doc/ext typestruct.h,1.1,1.2
Update of /cvsroot/python/python/dist/src/Doc/ext
In directory usw-pr-cvs1:/tmp/cvs-serv18649/ext

Modified Files:
typestruct.h
Log Message:
Use the right types for a couple of fields of the type structure.

Index: typestruct.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/typestruct.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** typestruct.h 28 Mar 2002 23:32:53 -0000 1.1
--- typestruct.h 29 Mar 2002 22:46:04 -0000 1.2
***************
*** 56,61 ****
/* Attribute descriptor and subclassing stuff */
struct PyMethodDef *tp_methods;
! struct memberlist *tp_members;
! struct getsetlist *tp_getset;
struct _typeobject *tp_base;
PyObject *tp_dict;
--- 56,61 ----
/* Attribute descriptor and subclassing stuff */
struct PyMethodDef *tp_methods;
! struct PyMemberDef *tp_members;
! struct PyGetSetDef *tp_getset;
struct _typeobject *tp_base;
PyObject *tp_dict;