diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-03 02:30:51 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-03 02:30:51 (GMT) |
commit | a641def110cacdd2737b5330c3a6f9ca7accc7b9 (patch) | |
tree | f4fc816e5cee830805a0ef60adb16d6378e8308c /Include | |
parent | 47d5e15e502c198358d7d275b82bcfcd2ba21b85 (diff) | |
parent | eb698fe68c38bf7d2eb0bebbccdcef5dfa0eccfd (diff) | |
download | cpython-a641def110cacdd2737b5330c3a6f9ca7accc7b9.zip cpython-a641def110cacdd2737b5330c3a6f9ca7accc7b9.tar.gz cpython-a641def110cacdd2737b5330c3a6f9ca7accc7b9.tar.bz2 |
Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper
(Merge 3.5)
Diffstat (limited to 'Include')
-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 */ |