mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
157 B
Python
12 lines
157 B
Python
class Foo:
|
|
def foo(self):
|
|
print("a")
|
|
|
|
class Boo(Foo):
|
|
'''
|
|
this is boo
|
|
very long boo
|
|
'''
|
|
def boo(self):
|
|
print "rrrrr"
|