Skip to content

Commit 08c2433

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 d6706e3 commit 08c2433

14 files changed

+0
-28
lines changed

Diff for: 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

Diff for: 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 re
53
import unittest

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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 re
42
import sys
53
import unittest

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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)