diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-01 12:15:23 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-01 12:15:23 -0400 |
commit | d8cf382ee70c9cf4fb71979352a70133a2ad9cb2 (patch) | |
tree | 5e09db6e3564bcdc13c76b6ec02db40a6b77e742 /Include/ceval.h | |
parent | 0969a9f8abcf98bb43ea77b1dd050426adcfb4f7 (diff) | |
download | cpython-git-d8cf382ee70c9cf4fb71979352a70133a2ad9cb2.tar.gz |
Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 7dfe2b254e..e5585945ae 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -23,8 +23,8 @@ PyAPI_FUNC(PyObject *) PyEval_CallMethod(PyObject *obj, #ifndef Py_LIMITED_API PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); -PyAPI_FUNC(void) PyEval_SetCoroutineWrapper(PyObject *wrapper); -PyAPI_FUNC(PyObject *) PyEval_GetCoroutineWrapper(void); +PyAPI_FUNC(void) _PyEval_SetCoroutineWrapper(PyObject *wrapper); +PyAPI_FUNC(PyObject *) _PyEval_GetCoroutineWrapper(void); #endif struct _frame; /* Avoid including frameobject.h */ |