aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2016-09-05 15:33:46 -0700
committerBrett Cannon <brett@python.org>2016-09-05 15:33:46 -0700
commit3cebf9387279d8b21369f55e205392199ad9b1a2 (patch)
tree3ab40b5c47ee4876a46d2ca6920b402a0e63cd16 /Include/ceval.h
parentIssue #25387: Check return value of winsound.MessageBeep (diff)
downloadcpython-3cebf9387279d8b21369f55e205392199ad9b1a2.tar.gz
cpython-3cebf9387279d8b21369f55e205392199ad9b1a2.tar.bz2
cpython-3cebf9387279d8b21369f55e205392199ad9b1a2.zip
Implement the frame evaluation API aspect of PEP 523.
Diffstat (limited to 'Include/ceval.h')
-rw-r--r--Include/ceval.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index 73b4ca63282..7607f75dcab 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.