mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
13 lines
208 B
Python
13 lines
208 B
Python
class Foo:
|
|
def foo(self):
|
|
print("a")
|
|
|
|
def boo(self):
|
|
"""
|
|
In python we use multi-line comments inside of method body
|
|
"""
|
|
print "rrrrr"
|
|
|
|
|
|
class Boo(Foo):
|
|
pass |