Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. def decorator(inner_function):
  2. def wrapper(*args, **kwargs):
  3. # New wrapper stuff
  4. inner_function(*args, **kwargs)
  5. # New wrapper stuff
  6. return inner_function(*args, **kwargs)
  7. return wrapper
  8.  
  9. @decorator
  10. def decorated_function():
  11. pass
  12.  
  13. decorated_function() # returns the decorated_function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement