Files
openide/python/testData/refactoring/pullup/withComments.py

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"