Skip to content

Commit 53124b6

Browse files
code-health: remove print compatibility wrapper
__future__ .print_function brings Python 3 print to Python 2 [1]. 1. https://docs.python.org/2/reference/simple_stmts.html#future
1 parent 32dba69 commit 53124b6

15 files changed

+0
-30
lines changed

test/suites/lib/remote_tarantool_server.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import os
53
import random

test/suites/test_datetime.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import msgpack

test/suites/test_datetime_arithmetic.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import msgpack

test/suites/test_dbapi.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53

test/suites/test_decimal.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import decimal

test/suites/test_dml.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import tarantool

test/suites/test_encoding.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import tarantool

test/suites/test_execute.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53

test/suites/test_interval.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import msgpack

test/suites/test_mesh.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import warnings

test/suites/test_pool.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import time
53
import unittest

test/suites/test_protocol.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
from tarantool.utils import greeting_decode, version_id

test/suites/test_reconnect.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import warnings

test/suites/test_schema.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import tarantool

test/suites/test_uuid.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import sys
42
import unittest
53
import uuid

0 commit comments

Comments
 (0)