aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/configuration.py
diff options
context:
space:
mode:
authorAlex Langford <alangford@apple.com>2023-08-11 14:46:23 -0700
committerAlex Langford <alangford@apple.com>2023-08-14 14:14:48 -0700
commite634c2f7149392b62e93c1b2b75701a12bc06721 (patch)
tree440005cce32b72b2fa4808644818d1ee5b056c40 /lldb/packages/Python/lldbsuite/test/configuration.py
parent63c7815faf2d112474675db39f61341c8d42b1ce (diff)
downloadllvm-e634c2f7149392b62e93c1b2b75701a12bc06721.zip
llvm-e634c2f7149392b62e93c1b2b75701a12bc06721.tar.gz
llvm-e634c2f7149392b62e93c1b2b75701a12bc06721.tar.bz2
[lldb] Remove use of __future__ in python
These were useful primarily for the Python 2 to 3 transition. Python 2 is no longer supported so these are no longer necessary. Differential Revision: https://reviews.llvm.org/D157759
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/configuration.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py
index 0085117..2a4b9b3 100644
--- a/lldb/packages/Python/lldbsuite/test/configuration.py
+++ b/lldb/packages/Python/lldbsuite/test/configuration.py
@@ -7,9 +7,6 @@ Provides the configuration class, which holds all information related to
how this invocation of the test suite should be run.
"""
-from __future__ import absolute_import
-from __future__ import print_function
-
# System modules
import os