When I put a class method under a decorator it hides the method description ("""x""") in help(class_name). How can I fix that please ?
Using functools.wraps:
def decorator(f):
@functools.wraps(f)
def wrapped(*args):
# do something
return wrapped