Decorator help

  • Thread starter Joseph L. Casale
  • Start date
J

Joseph L. Casale

I have a set of methods which take args that I decorate twice,

def wrapped(func):
def wrap(*args, **kwargs):
try:
val = func(*args, **kwargs)
# some work
except BaseException as error:
log.exception(error)
return []
return wrap

def wrapped_again(length):
def something(func):
def wrapped_func(*args, **kwargs):
values = func(*args, **kwargs)
# do some work
return values
return wrapped_func
return something

So the methods wrapped are as follows:

@wrapped_again(12)
@wrapped
def class_method(self, **kwargs):
#....

Is it possible to get the name of the original method (class_method) from within wrapped_func inside wrapped_again?
Thanks!
jlc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top