Home | History | Annotate | Download | only in test

Lines Matching refs:ismethod

23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode,
47 inspect.isframe, inspect.isfunction, inspect.ismethod,
81 self.istest(inspect.ismethod, 'mod.StupidGit.abuse')
82 self.istest(inspect.ismethod, 'git.argue')
616 # contrary to spec, ismethod() is also True for unbound methods
618 self.assertIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
621 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))
629 self.assertIn(('f', B.f), inspect.getmembers(B, inspect.ismethod))
632 self.assertIn(('f', b.f), inspect.getmembers(b, inspect.ismethod))