Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. def function(arg):
  2.     def decorator(function):
  3.         # ..
  4.         return function
  5.     return decorator
  6.  
  7. @decorator("Mon argument")
  8. def ma_fonction(arg):
  9.     # ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement