diff options
Diffstat (limited to 'Include/cpython/genobject.h')
-rw-r--r-- | Include/cpython/genobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/cpython/genobject.h b/Include/cpython/genobject.h index 18b8ce9..7856481 100644 --- a/Include/cpython/genobject.h +++ b/Include/cpython/genobject.h @@ -77,6 +77,8 @@ PyAPI_FUNC(PyObject *) PyAsyncGen_New(PyFrameObject *, #define PyAsyncGen_CheckExact(op) Py_IS_TYPE((op), &PyAsyncGen_Type) +#define PyAsyncGenASend_CheckExact(op) Py_IS_TYPE((op), &_PyAsyncGenASend_Type) + #undef _PyGenObject_HEAD |