change all shebangs to Python3
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Wed, 18 Dec 2024 09:01:43 +0000 (10:01 +0100)
committerSylvestre Ledru <sylvestre@debian.org>
Wed, 18 Dec 2024 09:01:43 +0000 (10:01 +0100)
find . -name "*.py" -exec sed "s|\!/usr/bin/env python$|\!/usr/bin/env python3|g" -i {} \;
===================================================================

Gbp-Pq: Name python3-shebang.patch

75 files changed:
clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
clang/bindings/python/examples/cindex/cindex-dump.py
clang/bindings/python/examples/cindex/cindex-includes.py
clang/tools/scan-view/bin/scan-view
clang/tools/scan-view/share/startfile.py
clang/utils/ABITest/ABITestGen.py
clang/utils/CIndex/completion_logger_server.py
clang/utils/CaptureCmd
clang/utils/CmpDriver
clang/utils/FindSpecRefs
clang/utils/FuzzTest
clang/utils/TestUtils/deep-stack.py
clang/utils/analyzer/CmpRuns.py
clang/utils/analyzer/SATestAdd.py
clang/utils/analyzer/SATestBuild.py
clang/utils/analyzer/SATestUpdateDiffs.py
clang/utils/analyzer/SumTimerInfo.py
clang/utils/analyzer/exploded-graph-rewriter.py
clang/utils/check_cfc/check_cfc.py
clang/utils/check_cfc/obj_diff.py
clang/utils/check_cfc/test_check_cfc.py
clang/utils/modfuzz.py
clang/utils/token-delta.py
compiler-rt/lib/asan/scripts/asan_symbolize.py
compiler-rt/lib/fuzzer/scripts/unbalanced_allocs.py
compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py
compiler-rt/lib/sanitizer_common/scripts/sancov.py
libcxx/utils/cat_files.py
libcxx/utils/generate_feature_test_macro_components.py
lld/utils/benchmark.py
lldb/examples/python/file_extract.py
lldb/packages/Python/lldbsuite/test/bench.py
lldb/scripts/analyze-project-deps.py
lldb/scripts/verify_api.py
lldb/utils/lui/lui.py
lldb/utils/lui/sandbox.py
llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
llvm/test/BugPoint/compile-custom.ll.py
llvm/test/Other/opt-bisect-helper.py
llvm/test/TableGen/JSON-check.py
llvm/tools/opt-viewer/opt-diff.py
llvm/tools/opt-viewer/opt-stats.py
llvm/tools/opt-viewer/opt-viewer.py
llvm/tools/opt-viewer/optrecord.py
llvm/utils/Misc/zkill
llvm/utils/abtest.py
llvm/utils/bisect
llvm/utils/bugpoint_gisel_reducer.py
llvm/utils/clang-parse-diagnostics-file
llvm/utils/create_ladder_graph.py
llvm/utils/extract_symbols.py
llvm/utils/extract_vplan.py
llvm/utils/indirect_calls.py
llvm/utils/lit/lit/ProgressBar.py
llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest.py
llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest.py
llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.py
llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py
llvm/utils/lit/tests/Inputs/shtest-shell/check_path.py
llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py
llvm/utils/llvm-gisel-cov.py
llvm/utils/prepare-code-coverage-artifact.py
llvm/utils/release/findRegressions-nightly.py
llvm/utils/release/findRegressions-simple.py
llvm/utils/shuffle_fuzz.py
llvm/utils/shuffle_select_fuzz_tester.py
llvm/utils/sort_includes.py
llvm/utils/unicode-case-fold.py
llvm/utils/wciia.py

index 471dbf8c110b433e8fd29387712036d867f0c9dc..f98385dc6651601c34c76f0c03c410db23245c52 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # =- run-find-all-symbols.py - Parallel find-all-symbols runner -*- python  -*-=#
 #
index 10c3e4ba2dba4b7bccd2e09e56529492c3c722cd..79d3441e87fadfb8c4117ef0ab490f475bd136d7 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ===- cindex-dump.py - cindex/Python Source Dump -------------*- python -*--===#
 #
index 4e8bae19005cdfd76564146dc75207ed634b09b0..0b021f4554f592718ea3e6c2031eee7def4cc88c 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ===- cindex-includes.py - cindex/Python Inclusion Graph -----*- python -*--===#
 #
index f8883ad13c04b14225e880794a5a9bb1ed5b1692..b686747db742050bae76961fca17f8e58acb11e4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index d63e69280e90dde3354ce277b3fa18e51e6181e6..05e88ce6421718ce67a85a1d3b6a74ef6f91a2a8 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
 """Utility for opening a file using the default application in a cross-platform
index 119b3299ffa60fde42d249b7e28c51f57cbec0c0..b04cc3d29d8d852244010bdebc08982dfd3f4117 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 from pprint import pprint
index ff33331fc53c564814611da88811138a38012319..5888fb10fc7686912eaed81739d29f88c1c47a15 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from __future__ import absolute_import, division, print_function
 import sys
 from socket import *
index 705585c3bb041fd14c3b0c446c7fe2a86748022a..5ffdfe560edf0a3315825bc24d314e14709402ff 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """CaptureCmd - A generic tool for capturing information about the
 invocations of another program.
index 12ce7a3250f66b71d0c01b72cd58d2009b84c6ab..c2b6ab5ecb1aa51698ab029f0b3d52741da5e780 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 A simple utility that compares tool invocations and exit codes issued by
index 9097f93f28d631ddc418ecbddb2af82285aa91a4..3ad581b3dd7d1f9c28947ed49f7b62169fba889a 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import re
index 0e043df7cf08e4e88d3e5f5fcce7835b59b73f26..c4c956b6eb501dd6f916766624e947e0b40e5b85 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 This is a generic fuzz testing tool, see --help for more information.
index 4cf5789abdb12b7ae46bb9ddca6bb50a0c7b643a..85376dcedc2809c5d03a034c86a9a89003643e20 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 
index 94c9907bff3153c708607032ba6ec9e78c5da276..76444d2a445801795d3669bcf769f2ec69ab81d2 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 CmpRuns - A simple tool for comparing two static analyzer runs to determine
index 84e6d44b4282230cc772bbf0e735c14365704f5f..05bebabb3601b507a5533107405f7d4658ac7105 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Static Analyzer qualification infrastructure: adding a new project to
index bc86ed8b64e0e9b1f7d5fcb886caa89f94a8502d..6afeb353c824a7445a6438f45a2a3ca38df93902 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Static Analyzer qualification infrastructure.
index 1c5ffaaa2e3301bac01a6c66ca48eda2afbf027e..e1416510d0178596820a83d5fbc69444baec6a63 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Update reference results for static analyzer.
index 01614e41a065ce9fd8b1d8972df7829afa94b357..9772bff335f4b674d03f3eb811b8841efbe35b0b 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Script to Summarize statistics in the scan-build output.
index 5eaa7738103f795059fa5b9f913ac3cf16ef2b09..1cc002ef7ad449e5e6c2396624df11334141a8c8 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # ===- exploded-graph-rewriter.py - ExplodedGraph dump tool -----*- python -*--#
 #
index 8d42ec532bbb751c31193976c1f5a81a99b5f371..6b793937a5d08ec7b71b31c168f367b9d42a67bf 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Check CFC - Check Compile Flow Consistency
 
index 99ed19e522be20c3e37e1f69b2f8721c4c72ef47..086c8606b2d82e1d90c47701738f38ebf0840a4c 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 
index cd4441b702cde3ab8e4901d1516618d60d10be01..a23ad2ccbee41465a03ccd5d0d671f58338c5d1c 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Test internal functions within check_cfc.py."""
 
index 49ac522cd17e1bdc3a9df4d1bfa3ca22ee6a5472..7c00102c2cca58bcd101eda93277dddd0c027b11 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # To use:
 #  1) Update the 'decls' list below with your fuzzing configuration.
index 7c2375c03013f8975a250797a97d9da79adce4fd..4fe5798033f4103d091918efd71bf469435efda1 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 import os
index b08769614aeb18f102989bf9af8e55c5f02b2f06..698d45feee44fcd228d649b6408b0a0d605dacb4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # ===- lib/asan/scripts/asan_symbolize.py -----------------------------------===#
 #
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
index 7ba7e09cb4e50a0cdae138588245a7c60bd9b8bd..c8c19a017eb3f0111538decd930db470f2dfb4b7 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # ===- lib/fuzzer/scripts/unbalanced_allocs.py ------------------------------===#
 #
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
index fdbceae165e0dadf9c7d1666d2497c818c180b80..e4b33e6637b0ee8aa509e9e65f5fe7837ce2698f 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # ===- lib/sanitizer_common/scripts/gen_dynamic_list.py ---------------------===#
 #
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
index 31055086350abad21ad57de8e0c6cc2af44b6fa0..06906aabf18e881ce5ae93fcd6d0d187324d32a8 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # Merge or print the coverage data collected by asan's coverage.
 # Input files are sequences of 4-byte integers.
 # We need to merge these integers into a set and then
index 77127cb98c8a86049a9c7a41a895f4b833956927..cf733496ae8529bedc94dcb2ce6a922dda460622 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # ===----------------------------------------------------------------------===##
 #
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
index 0d7ce2063aa35edda419d434a93f7629c2703714..3357d0eef8e74463e6c8d17aa4f0066ea693df10 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 from builtins import range
index a07d5ecc69417c45148e8b2452e4d4bcb6e7ee84..b3818e26183f14d3bedea167ea34dfdf5d93d88d 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 # See https://llvm.org/LICENSE.txt for license information.
index 1a9b313b285895694b9e5e6e054d3ccbe1a603c4..4862ddec2d9855e08c83144b39b2175c9fa54dc4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import string
 import struct
index 1a11b3ef4f0e643d661b7236dde782e0177f56ff..8d1bfab1ca9dcc5024bdf7baa1ef38589240a539 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 A simple bench runner which delegates to the ./dotest.py test driver to run the
index 4724367e2e722d03633b615176c2d7583a525201..307267dea0a7d57dd8bbeda29c78cd34efe3129e 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import argparse
 import itertools
index 9d14a58121bfbc8c5afd66a71e4ce9d887525ac0..2bd0360c2a3a7b5fc1312275e9011c999c0ef4d2 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import subprocess
 import optparse
index 42ea3c6787306b75b31092eaa71a884f9f52fd86..91d8dd94ce61025f263d6530ffc866c2f3026173 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 ##===-- lui.py -----------------------------------------------*- Python -*-===##
 ##
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
index 3bcf3d5915d93c49cf10171d58697ac7546eca9b..f92a963eb8b668e48b60a329c35b1224f53a4c71 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 ##===-- sandbox.py -------------------------------------------*- Python -*-===##
 ##
 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
index 2e39f103cd9f363eae85d7317504fa3702394fc1..604819ecd7061f75d8c3390fbc722cd933244055 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 7a289e868a9ce508d448de2208e2c7dd9a540c9b..ebe04d75704d6d59206ec0667f530dad9feb64aa 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 9045541cbe4e8c83707bc074012a43ee07970651..1f6f7ff5ed1546f1657e4d1c36b7f22a6ced068f 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index c920e594e675a003e2ceaba595f8d9b1aa898832..1267540b8ad6573bf27390821055f2e1ae22664b 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 2e39f103cd9f363eae85d7317504fa3702394fc1..604819ecd7061f75d8c3390fbc722cd933244055 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 8f3e3c41d779917d6280b433f0765c52fbe75e9e..42271b6752e619d59b4da2c235ba91dd739dc9fc 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 86c0851272e2c0cd58e6df0f7a8c9b56cb1e22ab..efdb846a9456b5f285160d6edff9046be3e9443e 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 296a5dcfc4fdcdc64bf5420e5453acd3183bf010..ea78641670483a81cf9b64dd8992080d0789f53f 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 import subprocess
index 2763ca4010c8a2d6bace4b2754f1645d065fa932..09fa4a32ab6920d5d559ec88285d90ddf9aa7839 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 716143b31a8908b1831746b5b868fd0efd49a286..3d7fed60202f68ddb3ccaec97fb891dd7d04a0b8 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index c9c7db726f7652df14443441ca817082b36781a4..6fb8a8dc795f147eefded4a68cba58aea6723d46 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 9e2fc7cb553b585d3ef88de62a10c6817bdd7a56..b17c9f1e935661698da4f6306d0d56c18b46240f 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index bc0bfd586f7a48d3621f34646a0561a97af56180..b2971423c6d9d5257b076b644e95b846b13582f4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import re
index a799c8764b29078a4c9eb72ba6b228274ba34656..a2db15e1cbbef56c3d2d00aee1da2913115859e4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Given a previous good compile narrow down miscompiles.
 # Expects two directories named "before" and "after" each containing a set of
index 9df2cd9e1136bc9fedbf3c57f449854346d45d5e..adc7030738a7706d9e501f0fb316e2e8bdd894cf 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # The way you use this is you create a script that takes in as its first
 # argument a count. The script passes into LLVM the count via a command
index 116ec792e921d8794d82f59e41d9fc2411153acc..ee4f2093c59f749bf6d3143a72286145bef64fdf 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Reduces GlobalISel failures.
 
index 1f720c34544a790d8c9df6201f1dd256b2e3ea16..b4bd7b47bc2fb8c5e5adb63dc81acd344c3b9d71 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import plistlib
index f11aaf39bfa96073a54bc0f12950167e91370630..8894d356361087d80d0fe63f7dc04240a5403084 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """A ladder graph creation program.
 
 This is a python program that creates c source code that will generate
index 684e124c762594ea93acd9c578f6c3911f787efc..d06fc2c329755fcb90fa96f72a7f8c2d67f7b385 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A tool for extracting a list of symbols to export
 
index cff6f5074d7716972993d39e58bba25c6da17c21..4afccf7d1357253fa8507d6323c40fc32a35cc10 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # This script extracts the VPlan digraphs from the vectoriser debug messages
 # and saves them in individual dot files (one for each plan). Optionally, and
index 2bdabc8c4d74f14fd6cea8254cdaad18d579dcdd..54cf684814ded6afdd2b29e843e45f7648fc62d5 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A tool for looking for indirect jumps and calls in x86 binaries.
 
index f69ec623248cf77a5599cf52542e60a0fc88b6ba..fd52e789613ebd3ccc716b09745757b13b6389be 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Source: http://code.activestate.com/recipes/475116/, with
 # modifications by Daniel Dunbar.
index c45a710d52dae007f01e2213db8df473e9fd84aa..21b38ef2199998d52e30c679934e83c98c1d3a31 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import sys
index d1698c69f4d12ba24fd3d7601337f0c76b300b79..53d8c41924b95e39616a09ce0a2b9ace6b6c2ea0 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import sys
index e39bd73e44a1081b020134244c907180b010f137..4f07bca3b73aadbbd282a718658976215d7ce867 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 import os
index 2ad14c4017eabd93e8cdf169771ba8ae876f9b08..6c5a841d9196c88e3612fce6be8155b7233aaeb2 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import argparse
 import platform
index 62c906846fbb54a336ef77eb1348d2598a6e9225..dfca004d5075895a4e869e773511869dc921b8b5 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 9463251d823ab21766a3a816546b85c7000c4254..f5e78b157a5d4146722ed759afb6de394c2c2657 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
index 357089d4899b5223370081e552e158c1aa957a31..56919479c79ac727db4c0e9a5d0d80c98f6821ad 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
index 9d9526e0558a583ebc94d014d507b0da316908fb..e55f7a03f3831671f2c2d9fe8e8d5d411e93a862 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Summarize the information in the given coverage files.
 
index b865211088c8e96aca38ffd78be1669a60cb36ee..8e9a5b3b8ff3cb2b70127d2975fbb1165d5c306c 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
index 1fcc54d33deb697965a099be4e44e4c8b0653c1a..99d872631a6b157a62f464336ed43905c6c475b6 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from __future__ import print_function
 
 import re, string, sys, os, time
index 81fbfa980a3a6405b9b74289aa3d07eb5fb165d6..6e855ef83536349f3ea3096e3330b79837a7789d 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 import re, string, sys, os, time, math
index c03c77ce092a61188790b31ac8d21f2d6490bc9f..f3619edf3108be8ee9eb633175c1209b0fa9fc7e 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A shuffle vector fuzz tester.
 
index 73bac3c18db141e47c81f38cebf8dac65a3e8781..f418a63170cb2873fc074c30f3c020d30b10e950 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A shuffle-select vector fuzz tester.
 
index d30efd0b438d1917bd6f86709202c1ea5d11c3c9..d62d2c965dc6089715440ca20876da5941b0cf38 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Script to sort the top-most block of #include lines.
 
index 9639aa0dc44b41cab1856f0e85917d3d97c4a501..831e422364027c3cd010d8744c2f21a6fe0cb456 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Unicode case folding database conversion utility
 
index 7240d3c2a9ff24439e7bf7c3996bf13955c91297..3391576fa3cdfb7124cd92d474910d5094795188 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 wciia - Whose Code Is It Anyway