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

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 10 May 2001 14:12:45 -0700


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

Modified Files:
      Tag: descr-branch
	object.h 
Log Message:
Add declaration for PyDynamic_Type; see next checkin to typeobject.c.


Index: object.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/object.h,v
retrieving revision 2.79.2.5
retrieving revision 2.79.2.6
diff -C2 -r2.79.2.5 -r2.79.2.6
*** object.h	2001/05/06 02:31:13	2.79.2.5
--- object.h	2001/05/10 21:12:42	2.79.2.6
***************
*** 285,289 ****
  
  extern DL_IMPORT(PyTypeObject) PyType_Type; /* The type of most type objects */
! extern DL_IMPORT(PyTypeObject) PyTurtle_Type; /* The type of PyType_Type */
  
  #define PyType_Check(op) PyObject_TypeCheck(op, &PyType_Type)
--- 285,290 ----
  
  extern DL_IMPORT(PyTypeObject) PyType_Type; /* The type of most type objects */
! extern DL_IMPORT(PyTypeObject) PyDynamicType_Type; /* For dynamic types */
! extern DL_IMPORT(PyTypeObject) PyTurtle_Type; /* The type of the above two */
  
  #define PyType_Check(op) PyObject_TypeCheck(op, &PyType_Type)