mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
7 lines
106 B
Python
7 lines
106 B
Python
class Foo:
|
|
def foo(self):
|
|
print("a")
|
|
|
|
class Boo(Foo):
|
|
def boo(self):
|
|
print "rrrrr" |