Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created May 13, 2014 19:17
Show Gist options
  • Save AeroNotix/573c1f1260584a3b72e0 to your computer and use it in GitHub Desktop.
Save AeroNotix/573c1f1260584a3b72e0 to your computer and use it in GitHub Desktop.
def decorizzle(foo=None):
def takekwarg(f):
def inner(*args, **kwargs):
kwargs['foo'] = foo
return f(*args, **kwargs)
return inner
return takekwarg
@decorizzle(foo="LOL")
def something(**kwargs):
print kwargs
something()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment