diff options
author | Alex Langford <alangford@apple.com> | 2023-08-11 14:46:23 -0700 |
---|---|---|
committer | Alex Langford <alangford@apple.com> | 2023-08-14 14:14:48 -0700 |
commit | e634c2f7149392b62e93c1b2b75701a12bc06721 (patch) | |
tree | 440005cce32b72b2fa4808644818d1ee5b056c40 /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | 63c7815faf2d112474675db39f61341c8d42b1ce (diff) | |
download | llvm-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/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 1b2076f5..a27d8cf 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -18,9 +18,6 @@ Type: for available options. """ -from __future__ import absolute_import -from __future__ import print_function - # System modules import atexit import datetime |