blob: dfdc89fbeb3f99dc56b5411f68c109ccd5461b9b [file] [log] [blame]
def dec<caret>orator(arg1, arg2):
print('Wrapped with', arg1, arg2)
def wraps(f):
return f
return wraps
@decorator('arg1', 'arg2')
def do_things():
print('Things done')