summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-06-09 19:13:16 (GMT)
committerYury Selivanov <yury@magic.io>2016-06-09 19:13:16 (GMT)
commit711d25db4802bd7341b48316d169e648285aac70 (patch)
tree46628b747f3f7bd1ccdc5e9fe7186e28978fa348 /Include
parent5dee6551e2b98792bc6336206f763623483e7883 (diff)
parenta6f6edbda8648698289a8ee7abef6a35c924151b (diff)
downloadcpython-711d25db4802bd7341b48316d169e648285aac70.zip
cpython-711d25db4802bd7341b48316d169e648285aac70.tar.gz
cpython-711d25db4802bd7341b48316d169e648285aac70.tar.bz2
Merge 3.5 (issue #27243)
Diffstat (limited to 'Include')
-rw-r--r--Include/genobject.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/genobject.h b/Include/genobject.h
index 30cb023..1ff32a8 100644
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -54,6 +54,9 @@ typedef struct {
PyAPI_DATA(PyTypeObject) PyCoro_Type;
PyAPI_DATA(PyTypeObject) _PyCoroWrapper_Type;
+PyAPI_DATA(PyTypeObject) _PyAIterWrapper_Type;
+PyObject *_PyAIterWrapper_New(PyObject *aiter);
+
#define PyCoro_CheckExact(op) (Py_TYPE(op) == &PyCoro_Type)
PyObject *_PyCoro_GetAwaitableIter(PyObject *o);
PyAPI_FUNC(PyObject *) PyCoro_New(struct _frame *,