summaryrefslogtreecommitdiff
path: root/Doc/c-api/gen.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/c-api/gen.rst')
-rw-r--r--Doc/c-api/gen.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/Doc/c-api/gen.rst b/Doc/c-api/gen.rst
index 74410927bf..e098425e63 100644
--- a/Doc/c-api/gen.rst
+++ b/Doc/c-api/gen.rst
@@ -15,6 +15,11 @@ than explicitly calling :c:func:`PyGen_New` or :c:func:`PyGen_NewWithQualName`.
The C structure used for generator objects.
+.. c:type:: PySendResult
+
+ The enum value used to represent different results of :c:func:`PyGen_Send`.
+
+
.. c:var:: PyTypeObject PyGen_Type
The type object corresponding to generator objects.
@@ -42,3 +47,13 @@ than explicitly calling :c:func:`PyGen_New` or :c:func:`PyGen_NewWithQualName`.
with ``__name__`` and ``__qualname__`` set to *name* and *qualname*.
A reference to *frame* is stolen by this function. The *frame* argument
must not be ``NULL``.
+
+.. c:function:: PySendResult PyGen_Send(PyGenObject *gen, PyObject *arg, PyObject **presult)
+
+ Sends the *arg* value into the generator *gen*. Coroutine objects
+ are also allowed to be as the *gen* argument but they need to be
+ explicitly casted to PyGenObject*. Returns:
+
+ - ``PYGEN_RETURN`` if generator returns. Return value is returned via *presult*.
+ - ``PYGEN_NEXT`` if generator yields. Yielded value is returned via *presult*.
+ - ``PYGEN_ERROR`` if generator has raised and exception. *presult* is set to ``NULL``.