diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-12-13 12:11:23 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-13 12:23:04 +0100 |
commit | a52a11139c0e3db9b00079aa1516080742b79475 (patch) | |
tree | d917a778c431dff201f4c9c29cff0b0c4092ef63 /lldb/packages/Python/lldbsuite/test/commands/expression | |
parent | caa7c9e6f356574496ca0ec47cb2b81afb1f6679 (diff) | |
download | bcm5719-llvm-a52a11139c0e3db9b00079aa1516080742b79475.tar.gz bcm5719-llvm-a52a11139c0e3db9b00079aa1516080742b79475.zip |
[lldb][NFC] Remove 'from __future__ import print_function' from all tests that don't actually call 'print()'
Summary:
A lot of tests do this trick but the vast majority of them don't even call `print()`.
Most of this patch was generated by a script that just looks at all the files and deletes the line if there is no `print (` or `print(` anywhere else in the file.
I checked the remaining tests manually and deleted the import if we never call print (but instead do stuff like `expr print(...)` and similar false-positives).
I also corrected the additional empty lines after the import in the files that I manually edited.
Reviewers: JDevlieghere, labath, jfb
Reviewed By: labath
Subscribers: dexonsmith, wuzish, nemanjai, kbarton, christof, arphaman, abidh, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D71452
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/expression')
38 files changed, 0 insertions, 40 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py b/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py index 1108b121532..d53fc522078 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py @@ -6,7 +6,6 @@ untagged structures. Ticket: https://llvm.org/bugs/show_bug.cgi?id=26790 """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py b/lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py index 46ea111bf03..29d370e2335 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py @@ -2,7 +2,6 @@ Test calling an expression without a target. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py index 0065d98f473..afa84a948e5 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py @@ -2,7 +2,6 @@ Tests calling builtin functions using expression evaluation. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py index af78e523e3c..261e702fa59 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py @@ -2,7 +2,6 @@ Test calling std::String member functions. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py index d832983bdb6..0f0f1a54e31 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py @@ -2,7 +2,6 @@ Test calling a function, stopping in the call, continue and gather the result on stop. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py index 0eb7086b616..8ced082680d 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py @@ -7,7 +7,6 @@ Note: """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py index cef06f3717b..a61e69a1476 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py @@ -2,7 +2,6 @@ Test calling a function that hits a signal set to auto-restart, make sure the call completes. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py index c6b90ba5ba0..fea56f1bb5b 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py @@ -2,7 +2,6 @@ Test calling a function that throws an ObjC exception, make sure that it doesn't propagate the exception. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py b/lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py index 5eeb657ff54..f1fa7805384 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py @@ -1,4 +1,3 @@ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py b/lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py index 33a423c806b..5266266b6ab 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py @@ -2,7 +2,6 @@ Test the lldb command line completion mechanism for the 'expr' command. """ -from __future__ import print_function import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py b/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py index 19d9fa7e425..2babcc48cff 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py @@ -2,7 +2,6 @@ Test that --allow-jit=false does disallow JITting: """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py b/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py index 6a7e6075253..a383f691120 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py @@ -1,8 +1,5 @@ """Test that we are able to evaluate expressions when the inferior is blocked in a syscall""" -from __future__ import print_function - - import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py b/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py index 9aa28f77a3f..c93a05abe89 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py @@ -2,7 +2,6 @@ Test calling an expression with errors that a FixIt can fix. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py b/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py index 4d86ac5daa6..98872dffca3 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py @@ -2,7 +2,6 @@ Test using LLDB data formatters with frozen objects coming from the expression parser. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py b/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py index 509e3fbd6d0..dd1308ba58f 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py @@ -2,7 +2,6 @@ Test the IR interpreter """ -from __future__ import print_function import unittest2 diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py b/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py index 2c20b63cfd9..abff18f3fa1 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py @@ -4,7 +4,6 @@ valobj.AddressOf() returns None when an address is expected in a SyntheticChildrenProvider """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py b/lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py index 26e4309605e..aed83e224e5 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py @@ -1,4 +1,3 @@ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py b/lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py index 8af0ea1ba0c..833833a866f 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py @@ -7,7 +7,6 @@ o test_expr_options: Test expression command options. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py b/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py index e165e5f0ce1..577753c0497 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py @@ -2,7 +2,6 @@ Test that we can p *objcObject """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py index 7b963b5bfcd..54cb4832312 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py @@ -2,7 +2,6 @@ Test that we can have persistent pointer variables """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py index bde649b0e07..973eade3e56 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py @@ -2,7 +2,6 @@ Test that nested persistent types work. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py index 91681b480eb..e60a76861b6 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py @@ -2,7 +2,6 @@ Test that lldb persistent types works correctly. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py index 57370f121b4..57c04b215e9 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py @@ -2,7 +2,6 @@ Test that lldb persistent variables works correctly. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py b/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py index 4530342ea52..e203b386d5b 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py @@ -2,7 +2,6 @@ Test that the po command acts correctly. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py b/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py index 6d019c7415f..23dbce9227e 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py @@ -1,4 +1,3 @@ -from __future__ import print_function import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py b/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py index e7a5f597b70..b0da7e798ed 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py @@ -2,7 +2,6 @@ Test the robustness of lldb expression parser. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py b/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py index 4ff28bdfe86..56e7186ace3 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py @@ -2,7 +2,6 @@ The evaluating printf(...) after break stop and then up a stack frame. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py b/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py index 5406fb0e987..3eb3a86adf2 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py @@ -2,7 +2,6 @@ Test example snippets from the lldb 'help expression' output. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py b/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py index 896e599f59c..62925c6f94f 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py @@ -2,7 +2,6 @@ Test that LLDB can emit JIT objects when the appropriate setting is enabled """ -from __future__ import print_function import os import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py b/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py index e7bc79d8e7c..dd40e87d68d 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py @@ -1,4 +1,3 @@ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py b/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py index 4fe228d40d4..8437eac250b 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py @@ -11,7 +11,6 @@ o test_expr_commands_can_handle_quotes: Throw some expression commands with quotes at lldb. """ -from __future__ import print_function import unittest2 diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py b/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py index 1a733bebffe..cd02f89b461 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py @@ -2,7 +2,6 @@ Test some more expression commands. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py b/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py index 7862477001e..a64167ef55c 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py @@ -2,7 +2,6 @@ Test calling a function that waits a while, and make sure the timeout option to expr works. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py b/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py index e6a632b7f23..4e1a3779cfc 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py @@ -2,7 +2,6 @@ Test top-level expressions. """ -from __future__ import print_function import unittest2 diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py b/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py index bac8e5453e4..c518bf0559f 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py @@ -4,7 +4,6 @@ Regression test for <rdar://problem/8981098>: The expression parser's type search only looks in the current compilation unit for types. """ -from __future__ import print_function import lldb diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py b/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py index d42ee3de404..de883f47f93 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py @@ -2,7 +2,6 @@ Test stopping at a breakpoint in an expression, and unwinding from there. """ -from __future__ import print_function import unittest2 diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py b/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py index 2b097e81ddf..21280ea3ae5 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py @@ -3,7 +3,6 @@ Test that we can compile expressions referring to absent weak symbols from a dylib. """ -from __future__ import print_function import os diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py b/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py index 3aac6488660..3a394d781f0 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py @@ -1,4 +1,3 @@ -from __future__ import print_function import lldb |