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

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 23 Aug 2001 14:39:34 -0700


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

Modified Files:
	descrobject.h 
Log Message:
Add new built-in type 'getset' (PyGetSet_Type).
This implements the 'getset' class from test_binop.py.


Index: descrobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/descrobject.h,v
retrieving revision 2.1
retrieving revision 2.2
diff -C2 -d -r2.1 -r2.2
*** descrobject.h	2001/08/02 04:15:00	2.1
--- descrobject.h	2001/08/23 21:39:32	2.2
***************
*** 31,32 ****
--- 31,35 ----
  extern DL_IMPORT(PyObject *) PyDictProxy_New(PyObject *);
  extern DL_IMPORT(PyObject *) PyWrapper_New(PyObject *, PyObject *);
+ 
+ 
+ extern DL_IMPORT(PyTypeObject) PyGetSet_Type;