Skip to content

Instantly share code, notes, and snippets.

@j2labs
Created June 5, 2012 20:02
Show Gist options
  • Save j2labs/2877458 to your computer and use it in GitHub Desktop.
Save j2labs/2877458 to your computer and use it in GitHub Desktop.
name of wrapped fun
>>> def deco(method):
... def wrapped(*a, **kw):
... retval = method(*a, **kw)
... return retval
... return wrapped
...
>>>
>>> def foo():
... return 4
...
>>> foo.__name__
'foo'
>>> foo = deco(foo)
>>> foo.__name__
'wrapped'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment