mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
7 lines
93 B
Python
7 lines
93 B
Python
class Foo:
|
|
def xyzzy(self): pass
|
|
|
|
def x(p):
|
|
if isinstance(p, Foo):
|
|
p.xyzzy()
|