summaryrefslogtreecommitdiff
path: root/python/testData/refactoring/pullup/withComments.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/refactoring/pullup/withComments.py')
-rw-r--r--python/testData/refactoring/pullup/withComments.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/testData/refactoring/pullup/withComments.py b/python/testData/refactoring/pullup/withComments.py
index 32edbc391bf2..a044302c006b 100644
--- a/python/testData/refactoring/pullup/withComments.py
+++ b/python/testData/refactoring/pullup/withComments.py
@@ -3,6 +3,8 @@ class Foo:
print("a")
class Boo(Foo):
- # this is boo
def boo(self):
+ """
+ In python we use multi-line comments inside of method body
+ """
print "rrrrr" \ No newline at end of file