Python Decorator Pattern
Creating reusable function decorators
Python
@functools.wraps(func)
def wrapper(*args, **kwargs): ...
Creating reusable function decorators
@functools.wraps(func)
def wrapper(*args, **kwargs): ...