[PATCH] D83857: Harmonize python shebang
serge via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 15 00:36:38 PDT 2020
serge-sans-paille created this revision.
serge-sans-paille added reviewers: arsenm, compnerd.
Herald added subscribers: llvm-commits, danielkiss, usaxena95, lebedev.ri, arphaman, kristof.beyls, wdng.
Herald added a reviewer: bollu.
Herald added a reviewer: lebedev.ri.
Herald added a project: LLVM.
Before:
grep -r --include=\*.py -E '^#!' -h | sort | uniq -c
1 #!/bin/env python
6 #! /usr/bin/env python
162 #!/usr/bin/env python
2 #! /usr/bin/env python3
16 #!/usr/bin/env python3
2 #! /usr/bin/python
49 #!/usr/bin/python
After
grep -r --include=\*.py -E '^#!' -h | sort | uniq -c
220 #!/usr/bin/env python
18 #!/usr/bin/env python3
I've kept python3 reference to capture the intent « this a py3 only script »
https://reviews.llvm.org/D83857
Files:
clang/utils/clangdiag.py
clang/utils/modfuzz.py
compiler-rt/lib/sanitizer_common/scripts/litlint_test.py
compiler-rt/test/sanitizer_common/android_commands/android_compile.py
compiler-rt/test/sanitizer_common/android_commands/android_run.py
compiler-rt/test/sanitizer_common/ios_commands/iossim_compile.py
compiler-rt/test/sanitizer_common/ios_commands/iossim_env.py
compiler-rt/test/sanitizer_common/ios_commands/iossim_prepare.py
compiler-rt/test/sanitizer_common/ios_commands/iossim_run.py
debuginfo-tests/dexter/dexter.py
debuginfo-tests/llgdb-tests/llgdb.py
libc/AOR_v20.02/math/tools/plot.py
libcxx/utils/google-benchmark/mingw.py
lldb/examples/darwin/heap_find/heap.py
lldb/examples/python/armv7_cortex_m_target_defintion.py
lldb/examples/python/bsd.py
lldb/examples/python/cmdtemplate.py
lldb/examples/python/crashlog.py
lldb/examples/python/delta.py
lldb/examples/python/disasm-stress-test.py
lldb/examples/python/disasm.py
lldb/examples/python/file_extract.py
lldb/examples/python/gdbremote.py
lldb/examples/python/globals.py
lldb/examples/python/lldb_module_utils.py
lldb/examples/python/lldbtk.py
lldb/examples/python/mach_o.py
lldb/examples/python/memory.py
lldb/examples/python/operating_system.py
lldb/examples/python/performance.py
lldb/examples/python/process_events.py
lldb/examples/python/sbvalue.py
lldb/examples/python/shadow.py
lldb/examples/python/sources.py
lldb/examples/python/stacks.py
lldb/examples/python/symbolication.py
lldb/examples/python/types.py
lldb/examples/python/x86_64_linux_target_definition.py
lldb/examples/python/x86_64_qemu_target_definition.py
lldb/examples/python/x86_64_target_definition.py
lldb/scripts/analyze-project-deps.py
lldb/scripts/reproducer-replay.py
lldb/test/API/functionalities/plugins/python_os_plugin/operating_system.py
lldb/test/API/functionalities/plugins/python_os_plugin/operating_system2.py
lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/operating_system.py
lldb/test/Shell/helper/build.py
lldb/third_party/Python/module/progress/progress.py
llvm/utils/DSAclean.py
llvm/utils/DSAextract.py
llvm/utils/benchmark/mingw.py
llvm/utils/docker/scripts/llvm_checksum/llvm_checksum.py
llvm/utils/lint/common_lint.py
llvm/utils/lint/cpp_lint.py
llvm/utils/lint/generic_lint.py
llvm/utils/schedcover.py
llvm/utils/testgen/mc-bundling-x86-gen.py
openmp/runtime/tools/summarizeStats.py
polly/test/update_check.py
polly/utils/jscop2cloog.py
polly/utils/pyscop/jscop2iscc.py
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83857.278092.patch
Type: text/x-patch
Size: 21019 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200715/51400497/attachment-0001.bin>
More information about the llvm-commits
mailing list