Home
last modified time | relevance | path

Searched refs:ismethod (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_pyclbr.py69 def ismethod(oclass, obj, name): function
112 if ismethod(py_item, getattr(py_item, m), m):
H A Dtest_inspect.py44 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode,
94 inspect.isframe, inspect.isfunction, inspect.ismethod,
155 self.istest(inspect.ismethod, 'git.argue')
156 self.istest(inspect.ismethod, 'mod.custom_method')
1281 self.assertNotIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
1284 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
/third_party/python/Lib/
H A Dinspect.py9 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
122 "ismethod",
300 def ismethod(object): function
313 But not if ismethod() or isclass() or isfunction() are true.
323 __func__ attribute (etc) when an object passes ismethod()."""
324 if isclass(object) or ismethod(object) or isfunction(object):
338 if isclass(object) or ismethod(object) or isfunction(object):
395 while ismethod(f):
522 or ismethod(object)
798 if ismethod(ob
[all...]
H A Dpydoc.py105 if inspect.ismethod(obj):
239 if inspect.ismethod(fn):
1710 if inspect.ismethod(thing):
H A Ddoctest.py1114 if inspect.ismethod(obj): obj = obj.__func__
/third_party/node/deps/v8/tools/
H A Dgrokdump.py3539 methods = inspect.getmembers(InspectionShell, predicate=inspect.ismethod)

Completed in 21 milliseconds