vote up 0 vote down star
1

Checking to see if m.im_self is the class works some of the time but doesn't seem to be 100% reliable (ex. if you use multiple decorators on a method.)

flag

62% accept rate
Please provide code examples of working/non-working scenarios. – AJ Nov 6 at 13:17
1  
What's wrong with reading the source? – S.Lott Nov 6 at 13:22
2  
Related: stackoverflow.com/questions/1259963/… – Nadia Alramli Nov 6 at 13:34
1  
Provocative answer, as you didn't specify what you want to achieve: Why do you even care? If you can invoke it - you're fine. If you can't - well, that can happen regardless whether it's a classmethod, staticmethod or instance method. – digitalarbeiter Nov 6 at 13:34

1 Answer

vote up 1 vote down

If it's a bound method on the class then it's a classmethod.

from inspect import ismethod, isclass
def isclassmethod( m ):
 return ismethod(m) and isclass(m.__self__)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.