summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2016-03-02 11:30:46 -0500
committerYury Selivanov <yselivanov@sprymix.com>2016-03-02 11:30:46 -0500
commitc724bae51cd0580cd493f319f3b14c2e1a28f3b6 (patch)
treeafe43c1777b5b40b5d352ed0cd232ec1c88b971c /Include
parente076ffb068ce4e76a7103451c3bef79c2610f791 (diff)
downloadcpython-git-c724bae51cd0580cd493f319f3b14c2e1a28f3b6.tar.gz
coroutines: Error when awaiting on coroutine that's being awaited
Issue #25888
Diffstat (limited to 'Include')
-rw-r--r--Include/genobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/genobject.h b/Include/genobject.h
index 4c71861723..30cb023234 100644
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -43,6 +43,7 @@ PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(struct _frame *,
PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *);
PyAPI_FUNC(int) _PyGen_FetchStopIterationValue(PyObject **);
PyObject *_PyGen_Send(PyGenObject *, PyObject *);
+PyObject *_PyGen_yf(PyGenObject *);
PyAPI_FUNC(void) _PyGen_Finalize(PyObject *self);
#ifndef Py_LIMITED_API