diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2016-03-02 16:30:46 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2016-03-02 16:30:46 (GMT) |
commit | c724bae51cd0580cd493f319f3b14c2e1a28f3b6 (patch) | |
tree | afe43c1777b5b40b5d352ed0cd232ec1c88b971c /Include | |
parent | e076ffb068ce4e76a7103451c3bef79c2610f791 (diff) | |
download | cpython-c724bae51cd0580cd493f319f3b14c2e1a28f3b6.zip cpython-c724bae51cd0580cd493f319f3b14c2e1a28f3b6.tar.gz cpython-c724bae51cd0580cd493f319f3b14c2e1a28f3b6.tar.bz2 |
coroutines: Error when awaiting on coroutine that's being awaited
Issue #25888
Diffstat (limited to 'Include')
-rw-r--r-- | Include/genobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/genobject.h b/Include/genobject.h index 4c71861..30cb023 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 |