From f31e2f2e5e3d614e97d61c9cd515835fe7366390 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Mon, 19 Oct 2015 18:42:41 +1100 Subject: Replace __future__.print_statement with print_function 1c35a97 fixed Python 2 only print statements, and imported a mix of __future__.print_function and __future__.print_statement. 1826d98 fixed most of them, however this one still remains. --- astroid/tests/testdata/python2/data/appl/myConnection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'astroid/tests/testdata/python2') diff --git a/astroid/tests/testdata/python2/data/appl/myConnection.py b/astroid/tests/testdata/python2/data/appl/myConnection.py index 35fc0ab..5b24b25 100644 --- a/astroid/tests/testdata/python2/data/appl/myConnection.py +++ b/astroid/tests/testdata/python2/data/appl/myConnection.py @@ -1,4 +1,4 @@ -from __future__ import print_statement +from __future__ import print_function from data import SSL1 class MyConnection(SSL1.Connection): -- cgit v1.2.1