Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created August 26, 2011 07:42
Show Gist options
  • Save qoelet/1172922 to your computer and use it in GitHub Desktop.
Save qoelet/1172922 to your computer and use it in GitHub Desktop.
class Foo(object):
def __init__(self, f):
self.f = f
def __call__(self, *args):
self.f(*args)
@Foo
def dec_me(str):
print "hello %s!" % str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment