Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper

This commit is contained in:
Yury Selivanov 2015-06-02 22:30:31 -04:00
parent ca82910221
commit eb698fe68c
2 changed files with 30 additions and 29 deletions

View file

@ -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 */