diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-02 11:58:03 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-02 11:58:03 +0000 |
commit | 65d386eac5b2134ecc862a14fb75d9c95151ba89 (patch) | |
tree | 954569eea412039f9442664168892e515a6f6113 /lldb/packages/Python | |
parent | 1da33fd4eff08ca6a28cf5d8ddd8d5e00e2b76f9 (diff) | |
download | bcm5719-llvm-65d386eac5b2134ecc862a14fb75d9c95151ba89.tar.gz bcm5719-llvm-65d386eac5b2134ecc862a14fb75d9c95151ba89.zip |
[lldb][NFC] Remove unused imports from TestIntegerTypesExpr.py
llvm-svn: 370645
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py b/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py index e27dd1d7a8c..0beca274433 100644 --- a/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py +++ b/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py @@ -2,16 +2,9 @@ Test that variable expressions of integer basic types are evaluated correctly. """ -from __future__ import print_function - - import AbstractBase -import lldb from lldbsuite.test.decorators import * -from lldbsuite.test.lldbtest import * -from lldbsuite.test import lldbutil - class IntegerTypesExprTestCase(AbstractBase.GenericTester): |