summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2017-10-06 02:08:57 -0400
committerGitHub <noreply@github.com>2017-10-06 02:08:57 -0400
commitfaa135acbfcd55f79fb97f7525c8aa6f5a5b6a22 (patch)
tree8fd008b849b322699e20e18f92a179c06f7b0580 /Include/genobject.h
parentweaken pthread_getcpuclockid test (more bpo-31596) (#3904) (diff)
downloadcpython-faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22.tar.gz
cpython-faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22.tar.bz2
cpython-faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22.zip
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
Diffstat (limited to 'Include/genobject.h')
-rw-r--r--Include/genobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/genobject.h b/Include/genobject.h
index 8c1825fc070..b9db9f9c1c4 100644
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -56,7 +56,6 @@ 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);