From: Michael W. Hudson Date: Thu, 20 Feb 2003 17:59:17 +0000 (+0000) Subject: As far as I can tell PyEval_GetOwner was removed in 1997 (when it was X-Git-Tag: v2.3c1~1748 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2aec8b744e2ac74c702f067c499c9c043d926d1f;p=python 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. --- diff --git a/Include/ceval.h b/Include/ceval.h index 8d0ca9eb1f..411cf3e97b 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -30,7 +30,6 @@ struct _frame; /* Avoid including frameobject.h */ PyAPI_FUNC(PyObject *) PyEval_GetBuiltins(void); 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);