From 3cebf9387279d8b21369f55e205392199ad9b1a2 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 5 Sep 2016 15:33:46 -0700 Subject: Implement the frame evaluation API aspect of PEP 523. --- Include/ceval.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Include/ceval.h') diff --git a/Include/ceval.h b/Include/ceval.h index 73b4ca6328..7607f75dca 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -119,6 +119,9 @@ PyAPI_FUNC(const char *) PyEval_GetFuncDesc(PyObject *); PyAPI_FUNC(PyObject *) PyEval_GetCallStats(PyObject *); PyAPI_FUNC(PyObject *) PyEval_EvalFrame(struct _frame *); PyAPI_FUNC(PyObject *) PyEval_EvalFrameEx(struct _frame *f, int exc); +#ifndef Py_LIMITED_API +PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(struct _frame *f, int exc); +#endif /* Interface for threads. -- cgit v1.2.1