Guest User

Untitled

a guest
Jan 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def myDec(callback):
  2. # do whatever with callback, like:
  3. getattr(SomeThing, callback)()
  4. def decorator():
  5. @functools.wraps()
  6. def _wrapped():
  7. pass
  8. return _wrapped
  9. return decorator
  10.  
  11.  
  12.  
  13.  
  14. @myDec('LOLZ')
  15. def big_gays():
  16. pass
Add Comment
Please, Sign In to add comment