blob: a044302c006b24c13094a82aec0fe8c9e98fd08c [file] [log] [blame]
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"