Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7597253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:06:47+00:00 2026-05-30T22:06:47+00:00

I understand that @decorator.decorator doesn’t allow to decorate above @staticmethod, @classmethod (and perhaps also

  • 0

I understand that @decorator.decorator doesn’t allow to decorate above @staticmethod, @classmethod (and perhaps also @property). I understand the usage:

class A(object):
    @classmethod
    @mydecorator
    def my_method(cls): pass

But, in a debugging module, I still want to try to do it dynamically. So I was wondering what is the way to retrieve the original method from those descriptor(?). I’ve read few responses, but I’m still confused…

I see some example with a class, and retrieving:

class my_class(property):
    def __get__(self, obj, cls):
        return self.fget.__get__(None, cls)

I love the signature-preserving of decorator, but still not sure how to do this. The logic I try to implement is:

import decorator

def mydecorator(f, *d_args, **d_kwargs):
    if (isinstance(f, classmethod)):
        return classmethod(mydecorator(f.__get__.?WHATELSE?))
    elif (isinstance(f, staticmethod)):
        return staticmethod(mydecorator(f.__get__.?WHATELSE?))
    elif (isinstance(f, property)):
        return property(mydecorator(f.__get__.?WHATELSE?))
    else:
        return decorator.decorator(f)

I’m trying to do this in Python 2.6, so I also welcome pointing that @decorator is changed (corrected?) in future version of python.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T22:06:48+00:00Added an answer on May 30, 2026 at 10:06 pm

    Considering:

    >>> def original():pass
    
    >>> classmethod(original).__func__ == original
    True
    >>> staticmethod(original).__func__ == original
    True
    >>> property(original).fget == original
    True
    

    Your function should be something like:

    import decorator
    
    def mydecorator(f, *d_args, **d_kwargs):
        if (isinstance(f, classmethod)):
            return classmethod(mydecorator(f.__func__))
        elif (isinstance(f, staticmethod)):
            return staticmethod(mydecorator(f.__func__))
        elif (isinstance(f, property)):
            return property(mydecorator(f.fget))
        else:
            return decorator.decorator(f)
    

    UPD: Sorry for inattention. In 2.* prior to 2.7. , you should do something like:

    import decorator
    def mydecorator(f, *d_args, **d_kwargs):
        if (isinstance(f, classmethod)):
            return classmethod(mydecorator(f.__get__(True).im_func))
        elif (isinstance(f, staticmethod)):
            return staticmethod(mydecorator(f.__get__(True)))
        elif (isinstance(f, property)):
            return property(mydecorator(f.fget))
        else:
            return decorator.decorator(f)
    

    Note that those True objects in f.__get__(True).im_func statement could be replaced by any object except None.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a template class that I've subclassed with a pointer to it (Decorator
Python has the idea of metaclasses that, if I understand correctly, allow you to
I'm trying to write a python class which uses a decorator function that needs
In my form i need this: <li class =af_title><div>Contact form</div></li> I understand that if
I'm looking for a decorator for Python class that would convert any element access
I understand that some countries have laws regarding website accessibility. In general, what are
I understand that there are several ways to blend XNA and WPF within the
I understand that they are both supposed to be small, but what are the
I understand that Microsoft uses this template when versioning their products: Major.Minor.Build.Revision. Major is
I understand that server-side validation is an absolute must to prevent malicious users (or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.