[Python-checkins] cpython (3.5): Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private

yury.selivanov python-checkins at python.org
Mon Jun 1 18:16:00 CEST 2015


https://hg.python.org/cpython/rev/1e9e0664ee9b
changeset:   96452:1e9e0664ee9b
branch:      3.5
parent:      96450:5a354de919aa
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Mon Jun 01 12:15:23 2015 -0400
summary:
  Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private

files:
  Include/ceval.h    |  4 ++--
  Python/ceval.c     |  6 +++---
  Python/sysmodule.c |  6 +++---
  3 files changed, 8 insertions(+), 8 deletions(-)


diff --git a/Include/ceval.h b/Include/ceval.h
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -23,8 +23,8 @@
 #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 */
diff --git a/Python/ceval.c b/Python/ceval.c
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3936,7 +3936,7 @@
             return NULL;
 
         if (co->co_flags & (CO_COROUTINE | CO_ITERABLE_COROUTINE)) {
-            coroutine_wrapper = PyEval_GetCoroutineWrapper();
+            coroutine_wrapper = _PyEval_GetCoroutineWrapper();
             if (coroutine_wrapper != NULL) {
                 PyObject *wrapped =
                             PyObject_CallFunction(coroutine_wrapper, "N", gen);
@@ -4390,7 +4390,7 @@
 }
 
 void
-PyEval_SetCoroutineWrapper(PyObject *wrapper)
+_PyEval_SetCoroutineWrapper(PyObject *wrapper)
 {
     PyThreadState *tstate = PyThreadState_GET();
 
@@ -4401,7 +4401,7 @@
 }
 
 PyObject *
-PyEval_GetCoroutineWrapper(void)
+_PyEval_GetCoroutineWrapper(void)
 {
     PyThreadState *tstate = PyThreadState_GET();
     return tstate->coroutine_wrapper;
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -655,10 +655,10 @@
                          Py_TYPE(wrapper)->tp_name);
             return NULL;
         }
-        PyEval_SetCoroutineWrapper(wrapper);
+        _PyEval_SetCoroutineWrapper(wrapper);
     }
     else {
-        PyEval_SetCoroutineWrapper(NULL);
+        _PyEval_SetCoroutineWrapper(NULL);
     }
     Py_RETURN_NONE;
 }
@@ -672,7 +672,7 @@
 static PyObject *
 sys_get_coroutine_wrapper(PyObject *self, PyObject *args)
 {
-    PyObject *wrapper = PyEval_GetCoroutineWrapper();
+    PyObject *wrapper = _PyEval_GetCoroutineWrapper();
     if (wrapper == NULL) {
         wrapper = Py_None;
     }

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list