Skip to content

Instantly share code, notes, and snippets.

View damondoucet's full-sized avatar

Damon Doucet damondoucet

  • San Francisco, California
View GitHub Profile

Keybase proof

I hereby claim:

  • I am damondoucet on github.
  • I am damondoucet (https://keybase.io/damondoucet) on keybase.
  • I have a public key ASBzdVM8Pxn_B7BGS795t_8phB7OTJBoCopmsk0XyB4gDQo

To claim this, I am signing this object:

class ReadArgs(object):
def __init__(self, f):
self.f = f
def __call__(self, *args, **kwargs):
print 'ReadArgs:', ','.join(self.f.func_code.co_varnames)
self.f(*args, **kwargs)
@ReadArgs