]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Pylint: tests: py3: use print function
authorMartin <martin.basti@gmail.com>
Fri, 1 Jul 2016 23:53:36 +0000 (01:53 +0200)
committerMartin <martin.basti@gmail.com>
Fri, 1 Jul 2016 23:53:36 +0000 (01:53 +0200)
tests/test_dnssec.py
tests/test_name.py
tests/test_ntoaaton.py

index a6cb264ead6e8e8fdbf92f077961c27fc81e3009..91f6a3869f384eb2a5b3eb8c7b39c5e9ca6060fe 100644 (file)
@@ -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:
index ea19b95a9cefab1da2cfb43ac88ee1b96fff0f6d..6aab7bbd3a17c17c814afd0180623ab65664e0cc 100644 (file)
@@ -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:
index 24fe3453434f5da2a0d98bae084e0372522f127a..b45689c83f9971a948126316497c1e68eeb17efb 100644 (file)
@@ -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: