summaryrefslogtreecommitdiff
path: root/test/input/func_e0204.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_e0204.py')
-rw-r--r--test/input/func_e0204.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/input/func_e0204.py b/test/input/func_e0204.py
index 26cbd52..7ab9cff 100644
--- a/test/input/func_e0204.py
+++ b/test/input/func_e0204.py
@@ -1,6 +1,6 @@
"""check for method without self as first argument
"""
-
+from __future__ import print_function
__revision__ = 0
@@ -9,11 +9,11 @@ class Abcd(object):
def __init__(truc):
"""method without self"""
- print 1
+ print(1)
def abdc(yoo):
"""another test"""
- print yoo
+ print(yoo)
def edf(self):
"""just another method"""
- print 'yapudju in', self
+ print('yapudju in', self)