diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-03 02:30:31 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-03 02:30:31 (GMT) |
commit | eb698fe68c38bf7d2eb0bebbccdcef5dfa0eccfd (patch) | |
tree | 2089c50d5439d46530f9c9ac7f4e4b8d0eaf598b /Include/ceval.h | |
parent | ca829102213c466ffecb1e464be5c8cb3967d961 (diff) | |
download | cpython-eb698fe68c38bf7d2eb0bebbccdcef5dfa0eccfd.zip cpython-eb698fe68c38bf7d2eb0bebbccdcef5dfa0eccfd.tar.gz cpython-eb698fe68c38bf7d2eb0bebbccdcef5dfa0eccfd.tar.bz2 |
Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 9f4d3f1..ec62571 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -25,7 +25,6 @@ PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); PyAPI_FUNC(void) _PyEval_SetCoroutineWrapper(PyObject *); PyAPI_FUNC(PyObject *) _PyEval_GetCoroutineWrapper(void); -PyAPI_FUNC(PyObject *) _PyEval_ApplyCoroutineWrapper(PyObject *); #endif struct _frame; /* Avoid including frameobject.h */ |