diff --git a/lldb/examples/darwin/heap_find/heap.py b/lldb/examples/darwin/heap_find/heap.py index 3157dfb5e870..0c8744ff15f4 100644 --- a/lldb/examples/darwin/heap_find/heap.py +++ b/lldb/examples/darwin/heap_find/heap.py @@ -8,6 +8,7 @@ # (lldb) script import lldb.macosx.heap #---------------------------------------------------------------------- +from __future__ import print_function import lldb import optparse import os diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py index 146c2a6a7eaa..09ce6100911f 100755 --- a/lldb/examples/python/crashlog.py +++ b/lldb/examples/python/crashlog.py @@ -26,6 +26,7 @@ # PYTHONPATH=/path/to/LLDB.framework/Resources/Python ./crashlog.py ~/Library/Logs/DiagnosticReports/a.crash #---------------------------------------------------------------------- +from __future__ import print_function import cmd import datetime import glob diff --git a/lldb/examples/python/symbolication.py b/lldb/examples/python/symbolication.py index 141dd7aa3744..dac9305d269d 100755 --- a/lldb/examples/python/symbolication.py +++ b/lldb/examples/python/symbolication.py @@ -26,6 +26,7 @@ # PYTHONPATH=/path/to/LLDB.framework/Resources/Python ./crashlog.py ~/Library/Logs/DiagnosticReports/a.crash #---------------------------------------------------------------------- +from __future__ import print_function import lldb import optparse import os