summaryrefslogtreecommitdiff
path: root/test/input/func_r0903.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_r0903.py')
-rw-r--r--test/input/func_r0903.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/input/func_r0903.py b/test/input/func_r0903.py
index ccbad58..917b0ea 100644
--- a/test/input/func_r0903.py
+++ b/test/input/func_r0903.py
@@ -1,4 +1,5 @@
"""test min methods"""
+from __future__ import print_function
__revision__ = None
class Aaaa(object):
@@ -7,7 +8,7 @@ class Aaaa(object):
pass
def meth1(self):
"""hehehe"""
- print self
+ print(self)
def _dontcount(self):
"""not public"""
- print self
+ print(self)