summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-01-13 17:46:59 (GMT)
committerGitHub <noreply@github.com>2020-01-13 17:46:59 (GMT)
commit2b1df4592e1691017414337514c6e378eb639498 (patch)
tree3db8c91a4964ac46aad3686c80f0cdbc8493b30c /Include/internal
parent3430c55417f59078ac397c343894a3ee82a39624 (diff)
downloadcpython-2b1df4592e1691017414337514c6e378eb639498.zip
cpython-2b1df4592e1691017414337514c6e378eb639498.tar.gz
cpython-2b1df4592e1691017414337514c6e378eb639498.tar.bz2
bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990)
_Py_FinishPendingCalls() now expects a tstate argument, instead of a runtime argument.
Diffstat (limited to 'Include/internal')
-rw-r--r--Include/internal/pycore_ceval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_ceval.h b/Include/internal/pycore_ceval.h
index 857fc0b..2a7c235 100644
--- a/Include/internal/pycore_ceval.h
+++ b/Include/internal/pycore_ceval.h
@@ -15,7 +15,7 @@ struct _frame;
#include "pycore_pystate.h" /* PyInterpreterState.eval_frame */
-PyAPI_FUNC(void) _Py_FinishPendingCalls(struct pyruntimestate *runtime);
+PyAPI_FUNC(void) _Py_FinishPendingCalls(PyThreadState *tstate);
PyAPI_FUNC(void) _PyEval_Initialize(struct _ceval_runtime_state *);
PyAPI_FUNC(void) _PyEval_FiniThreads(
struct _ceval_runtime_state *ceval);