[The doc](https://docs.python.org/3/reference/expressions.html#generator.send) of `generator.send()` shows `value` argument as shown below: > generator.send(value) But the docstring of `generator.send()` shows `arg` argument as shown below so they should show the same argument name for consistency: ```python def func(): yield gen = func() print(help(gen.send)) # send(arg) -> send 'arg' into generator, ``` <!-- gh-linked-prs --> ### Linked PRs * gh-138905 * gh-138913 * gh-138914 <!-- /gh-linked-prs -->