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

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