From ce2185ce279664e54ba22b14663091abc5a3a8f2 Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Sun, 19 Jan 2014 14:17:10 +0400 Subject: Modernize the code now that Python 2.5 is no longer supported - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections. --- tests/root/special/code.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/root/special/code.py') diff --git a/tests/root/special/code.py b/tests/root/special/code.py index 70c48d2e7..b7934b231 100644 --- a/tests/root/special/code.py +++ b/tests/root/special/code.py @@ -1,2 +1,2 @@ -print "line 1" -print "line 2" +print("line 1") +print("line 2") -- cgit v1.2.1