Let's say I have the following function:
def person(*args, **kwargs):
'''
person(name, age, parents=2)
this is a docstring.
'''
If I execute help(person)
I would get
person(*args, **kwargs)
person(name, age, children=5)
this is a docstring.
But instead, I want to see:
person(name, age, children=5)
this is a docstring.