Home
last modified time | relevance | path

Searched refs:ismethod (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/test/
Dtest_pyclbr.py68 def ismethod(oclass, obj, name): function
111 if ismethod(py_item, getattr(py_item, m), m):
Dtest_inspect.py87 inspect.isframe, inspect.isfunction, inspect.ismethod,
144 self.istest(inspect.ismethod, 'git.argue')
145 self.istest(inspect.ismethod, 'mod.custom_method')
1255 self.assertNotIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
1258 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
/third_party/boost/status/
Dboost_check_library.py141 for method in inspect.getmembers(self, predicate=inspect.ismethod):
178 for method in inspect.getmembers(self, predicate=inspect.ismethod):
/third_party/python/Lib/
Dinspect.py81 def ismethod(object): function
105 if isclass(object) or ismethod(object) or isfunction(object):
119 if isclass(object) or ismethod(object) or isfunction(object):
176 while ismethod(f):
299 or ismethod(object)
557 if ismethod(obj):
667 if ismethod(object):
853 if ismethod(object):
1378 if ismethod(func) and func.__self__ is not None:
1437 if ismethod(func):
Dpydoc.py104 if inspect.ismethod(obj):
238 if inspect.ismethod(fn):
1704 if inspect.ismethod(thing):
Ddoctest.py1101 if inspect.ismethod(obj): obj = obj.__func__
/third_party/python/Doc/library/
Dinspect.rst295 .. function:: ismethod(object)
417 :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin`
429 :attr:`__func__` attribute (etc) when an object passes :func:`ismethod`.