The doc 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:
def func():
yield
gen = func()
print(help(gen.send))
# send(arg) -> send 'arg' into generator,
Linked PRs