[llvm-branch-commits] Change python to python3 in some shebangs. (PR #134945)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Apr 8 15:53:57 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Peter Collingbourne (pcc)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/134945.diff
2 Files Affected:
- (modified) compiler-rt/test/sanitizer_common/android_commands/android_compile.py (+1-1)
- (modified) compiler-rt/test/sanitizer_common/android_commands/android_run.py (+1-1)
``````````diff
diff --git a/compiler-rt/test/sanitizer_common/android_commands/android_compile.py b/compiler-rt/test/sanitizer_common/android_commands/android_compile.py
index e9c6738a09a3f..cabeec3a26a24 100755
--- a/compiler-rt/test/sanitizer_common/android_commands/android_compile.py
+++ b/compiler-rt/test/sanitizer_common/android_commands/android_compile.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
import os, sys, subprocess
from android_common import *
diff --git a/compiler-rt/test/sanitizer_common/android_commands/android_run.py b/compiler-rt/test/sanitizer_common/android_commands/android_run.py
index 22c88aadce043..f50fc1eb2540d 100755
--- a/compiler-rt/test/sanitizer_common/android_commands/android_run.py
+++ b/compiler-rt/test/sanitizer_common/android_commands/android_run.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
import os, signal, sys, subprocess, tempfile
from android_common import *
``````````
</details>
https://github.com/llvm/llvm-project/pull/134945
More information about the llvm-branch-commits
mailing list