[Lldb-commits] [lldb] a5c3f10 - [lldb] Update shebang in heap.py and crashlog.py

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 2 15:34:03 PDT 2021


Author: Jonas Devlieghere
Date: 2021-07-02T15:33:57-07:00
New Revision: a5c3f10b7527e1aa020d5d05703bb816a3e936fb

URL: https://github.com/llvm/llvm-project/commit/a5c3f10b7527e1aa020d5d05703bb816a3e936fb
DIFF: https://github.com/llvm/llvm-project/commit/a5c3f10b7527e1aa020d5d05703bb816a3e936fb.diff

LOG: [lldb] Update shebang in heap.py and crashlog.py

Added: 
    

Modified: 
    lldb/examples/darwin/heap_find/heap.py
    lldb/examples/python/crashlog.py

Removed: 
    


################################################################################
diff  --git a/lldb/examples/darwin/heap_find/heap.py b/lldb/examples/darwin/heap_find/heap.py
index 830e851e2105..8ee44ae25e44 100644
--- a/lldb/examples/darwin/heap_find/heap.py
+++ b/lldb/examples/darwin/heap_find/heap.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #----------------------------------------------------------------------
 # This module is designed to live inside the "lldb" python package

diff  --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py
index 45f7d01bc38a..a7b2d3b52b56 100755
--- a/lldb/examples/python/crashlog.py
+++ b/lldb/examples/python/crashlog.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 #----------------------------------------------------------------------
 # Be sure to add the python path that points to the LLDB shared library.


        


More information about the lldb-commits mailing list