blob: a46e3ff64a06e1e49e654fcc8f8931e26a62950e [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class Foo:
2 def test(self): pass
3
4class Foo2:
5 def test(self): pass
6
7def x(p):
8 if isinstance(p, (Foo, Foo2)):
9 p.test()