Convert print statements to print function calls.

This patch was generating by running `2to3` on the files in the
lldb/test directory.  This patch should be NFC, but it does
introduce the `from __future__ import print_function` line, which
will break future uses of the print statement.

llvm-svn: 250763
diff --git a/lldb/test/lldbinline.py b/lldb/test/lldbinline.py
index f0ce453..0051c75 100644
--- a/lldb/test/lldbinline.py
+++ b/lldb/test/lldbinline.py
@@ -1,3 +1,5 @@
+from __future__ import print_function
+
 import lldb
 from lldbtest import *
 import lldbutil
@@ -161,8 +163,8 @@
         value = self.frame().EvaluateExpression (expression)
         self.assertTrue(value.IsValid(), expression+"returned a valid value")
         if self.TraceOn():
-            print value.GetSummary()
-            print value.GetValue()
+            print(value.GetSummary())
+            print(value.GetValue())
         if use_summary:
             answer = value.GetSummary()
         else: