diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-01 16:15:23 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-01 16:15:23 (GMT) |
commit | d8cf382ee70c9cf4fb71979352a70133a2ad9cb2 (patch) | |
tree | 5e09db6e3564bcdc13c76b6ec02db40a6b77e742 /Include | |
parent | 0969a9f8abcf98bb43ea77b1dd050426adcfb4f7 (diff) | |
download | cpython-d8cf382ee70c9cf4fb71979352a70133a2ad9cb2.zip cpython-d8cf382ee70c9cf4fb71979352a70133a2ad9cb2.tar.gz cpython-d8cf382ee70c9cf4fb71979352a70133a2ad9cb2.tar.bz2 |
Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private
Diffstat (limited to 'Include')
-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 7dfe2b2..e558594 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 */ |