mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
10 lines
197 B
Python
10 lines
197 B
Python
class Foo:
|
|
def foo(self):
|
|
print("a")
|
|
|
|
class Boo(Foo):
|
|
def boo(self):
|
|
"""
|
|
In python we use multi-line comments inside of method body
|
|
"""
|
|
print "rrrrr" |