How CPython extensions should be written in order for pydoc
to mention the arguments'name instead of (...)
?
I've followed the official python tutorial about extending Python, and even for the keywdarg.parrot
procedure I get:
$> pydoc kewdarg.parrot
parrot(...)
Print a lovely skit to standard output.
whereas I would expect
parrot(voltage, state="a stiff", action="voom", type="Norwegian Blue")
Print a lovely skit to standard output.