From 816a7bca58c214d51619c86674c2934ab06e9ed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Tue, 2 Jun 2020 21:06:08 +0200 Subject: [PATCH] Stop to use the __future__ module. The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: I0adf51fb6a54c323c3d7a26ea62c23184a99933d --- integration/tests/integration/int_tests.py | 1 - tools/install_venv.py | 2 -- tools/trove-pylint.py | 2 -- trove/common/base_wsgi.py | 2 -- 4 files changed, 7 deletions(-) diff --git a/integration/tests/integration/int_tests.py b/integration/tests/integration/int_tests.py index 594688ad4e..eee198b191 100644 --- a/integration/tests/integration/int_tests.py +++ b/integration/tests/integration/int_tests.py @@ -38,7 +38,6 @@ be used. """ -from __future__ import absolute_import import atexit import gettext import os diff --git a/tools/install_venv.py b/tools/install_venv.py index eee9e720e7..72ffaf0968 100755 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -22,8 +22,6 @@ Installation script for Trove's development virtualenv """ -from __future__ import print_function - import os import subprocess import sys diff --git a/tools/trove-pylint.py b/tools/trove-pylint.py index d30d65a10c..fa8a5d9715 100755 --- a/tools/trove-pylint.py +++ b/tools/trove-pylint.py @@ -12,8 +12,6 @@ # License for the specific language governing permissions and limitations # under the License. -from __future__ import print_function - import fnmatch import json from collections import OrderedDict diff --git a/trove/common/base_wsgi.py b/trove/common/base_wsgi.py index fd82972b4d..a6e5276c70 100644 --- a/trove/common/base_wsgi.py +++ b/trove/common/base_wsgi.py @@ -15,8 +15,6 @@ """Utility methods for working with WSGI servers.""" -from __future__ import print_function - import eventlet eventlet.patcher.monkey_patch(all=False, socket=True)