summaryrefslogtreecommitdiff
path: root/test/input/func_w0205.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_w0205.py')
-rw-r--r--test/input/func_w0205.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/input/func_w0205.py b/test/input/func_w0205.py
index 6e7bf43..97db817 100644
--- a/test/input/func_w0205.py
+++ b/test/input/func_w0205.py
@@ -1,5 +1,5 @@
"""check different signatures"""
-
+from __future__ import print_function
__revision__ = 0
class Abcd(object):
@@ -8,7 +8,7 @@ class Abcd(object):
self.aarg = False
def abcd(self, aaa=1, bbbb=None):
"""hehehe"""
- print self, aaa, bbbb
+ print(self, aaa, bbbb)
def args(self):
"""gaarrrggll"""
self.aarg = True
@@ -21,4 +21,4 @@ class Cdef(Abcd):
def abcd(self, aaa, bbbb=None):
"""hehehe"""
- print self, aaa, bbbb
+ print(self, aaa, bbbb)