summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
Diffstat (limited to 'Include')
-rw-r--r--Include/ceval.h2
-rw-r--r--Include/cpython/pystate.h3
2 files changed, 0 insertions, 5 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index 8cdf353..6fb224b 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -33,8 +33,6 @@ PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
PyAPI_FUNC(void) _PyEval_SetCoroutineOriginTrackingDepth(int new_depth);
PyAPI_FUNC(int) _PyEval_GetCoroutineOriginTrackingDepth(void);
-PyAPI_FUNC(void) _PyEval_SetCoroutineWrapper(PyObject *);
-PyAPI_FUNC(PyObject *) _PyEval_GetCoroutineWrapper(void);
PyAPI_FUNC(void) _PyEval_SetAsyncGenFirstiter(PyObject *);
PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFirstiter(void);
PyAPI_FUNC(void) _PyEval_SetAsyncGenFinalizer(PyObject *);
diff --git a/Include/cpython/pystate.h b/Include/cpython/pystate.h
index 6b7663f..94b0809 100644
--- a/Include/cpython/pystate.h
+++ b/Include/cpython/pystate.h
@@ -126,9 +126,6 @@ struct _ts {
int coroutine_origin_tracking_depth;
- PyObject *coroutine_wrapper;
- int in_coroutine_wrapper;
-
PyObject *async_gen_firstiter;
PyObject *async_gen_finalizer;