Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper

(Merge 3.5)
This commit is contained in:
Yury Selivanov 2015-06-02 22:30:51 -04:00
commit a641def110
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 */