Let\'s say I have a very simple logging decorator:
from functools import wraps def my_decorator(func): @wraps(func) def wrapper(*args, **kwargs):