Searched refs:ismethod (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_pyclbr.py | 69 def ismethod(oclass, obj, name): function 112 if ismethod(py_item, getattr(py_item, m), m):
|
H A D | test_inspect.py | 44 # 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 D | inspect.py | 9 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 D | pydoc.py | 105 if inspect.ismethod(obj): 239 if inspect.ismethod(fn): 1710 if inspect.ismethod(thing):
|
H A D | doctest.py | 1114 if inspect.ismethod(obj): obj = obj.__func__
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 3539 methods = inspect.getmembers(InspectionShell, predicate=inspect.ismethod)
|
Completed in 22 milliseconds