summaryrefslogtreecommitdiff
path: root/test/input/func_w0223.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_w0223.py')
-rw-r--r--test/input/func_w0223.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/input/func_w0223.py b/test/input/func_w0223.py
index 1563b41..5d380cc 100644
--- a/test/input/func_w0223.py
+++ b/test/input/func_w0223.py
@@ -1,7 +1,7 @@
# pylint: disable=R0903,R0922
"""test overriding of abstract method
"""
-
+from __future__ import print_function
__revision__ = '$Id: func_w0223.py,v 1.2 2004-09-29 08:35:13 syt Exp $'
class Abstract(object):
@@ -33,4 +33,4 @@ class Concret(Abstract):
def aaaa(self):
"""overidden form Abstract"""
- print self
+ print(self)