[Python-checkins] python/dist/src/Include ceval.h,2.48,2.49

mwh@users.sourceforge.net mwh@users.sourceforge.net
Thu, 20 Feb 2003 09:59:20 -0800


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

Modified Files:
	ceval.h 
Log Message:
As far as I can tell PyEval_GetOwner was removed in 1997 (when it was
called something else!).  I can't imagine removing the prototype is 
going to hurt, but put it back if *you* can.


Index: ceval.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/ceval.h,v
retrieving revision 2.48
retrieving revision 2.49
diff -C2 -d -r2.48 -r2.49
*** ceval.h	19 Feb 2003 15:53:14 -0000	2.48
--- ceval.h	20 Feb 2003 17:59:17 -0000	2.49
***************
*** 31,35 ****
  PyAPI_FUNC(PyObject *) PyEval_GetGlobals(void);
  PyAPI_FUNC(PyObject *) PyEval_GetLocals(void);
- PyAPI_FUNC(PyObject *) PyEval_GetOwner(void);
  PyAPI_FUNC(struct _frame *) PyEval_GetFrame(void);
  PyAPI_FUNC(int) PyEval_GetRestricted(void);
--- 31,34 ----