6 lines
105 B
Python
6 lines
105 B
Python
|
def man(func):
|
||
|
"""
|
||
|
Prints the manual for the function.
|
||
|
:param func: function
|
||
|
"""
|
||
|
print(func.__doc__)
|