From: Martin Date: Fri, 1 Jul 2016 23:53:36 +0000 (+0200) Subject: Pylint: tests: py3: use print function X-Git-Tag: v1.15.0~40^2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2517af69f65794c1be799cacc2d7774044381eec;p=thirdparty%2Fdnspython.git Pylint: tests: py3: use print function --- diff --git a/tests/test_dnssec.py b/tests/test_dnssec.py index a6cb264e..91f6a386 100644 --- a/tests/test_dnssec.py +++ b/tests/test_dnssec.py @@ -13,6 +13,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + try: import unittest2 as unittest except ImportError: diff --git a/tests/test_name.py b/tests/test_name.py index ea19b95a..6aab7bbd 100644 --- a/tests/test_name.py +++ b/tests/test_name.py @@ -13,6 +13,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + try: import unittest2 as unittest except ImportError: diff --git a/tests/test_ntoaaton.py b/tests/test_ntoaaton.py index 24fe3453..b45689c8 100644 --- a/tests/test_ntoaaton.py +++ b/tests/test_ntoaaton.py @@ -13,6 +13,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + try: import unittest2 as unittest except ImportError: