Home | History | Annotate | Download | only in python2.7

Lines Matching refs:ismethod

10     ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
67 def ismethod(object):
81 But not if ismethod() or isclass() or isfunction() are true.
91 im_func attribute (etc) when an object passes ismethod()."""
94 and not ismethod(object) # mutual exclusion
161 return bool((isfunction(object) or ismethod(object)) and
240 or ismethod(object)
320 if (ismethod(obj_via_getattr) or
409 if ismethod(object):
566 if ismethod(object):
812 if ismethod(func):
929 if ismethod(func) and func.im_self is not None: