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

Barry Warsaw bwarsaw@users.sourceforge.net
Tue, 23 Jan 2001 08:33:58 -0800


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

Modified Files:
	object.h 
Log Message:
Add prototype for PyObject_Dump().


Index: object.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/object.h,v
retrieving revision 2.70
retrieving revision 2.71
diff -C2 -r2.70 -r2.71
*** object.h	2001/01/17 21:28:08	2.70
--- object.h	2001/01/23 16:33:56	2.71
***************
*** 265,268 ****
--- 265,269 ----
  /* Generic operations on objects */
  extern DL_IMPORT(int) PyObject_Print(PyObject *, FILE *, int);
+ extern DL_IMPORT(void) PyObject_Dump(PyObject *);
  extern DL_IMPORT(PyObject *) PyObject_Repr(PyObject *);
  extern DL_IMPORT(PyObject *) PyObject_Str(PyObject *);