| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 
 | Description: change all shebangs to Python3
 find . -name "*.py" -exec sed "s|\!/usr/bin/env python$|\!/usr/bin/env python3|g" -i {} \;
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # =- run-find-all-symbols.py - Parallel find-all-symbols runner -*- python  -*-=#
 #
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/bindings/python/examples/cindex/cindex-dump.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/bindings/python/examples/cindex/cindex-dump.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/bindings/python/examples/cindex/cindex-dump.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ===- cindex-dump.py - cindex/Python Source Dump -------------*- python -*--===#
 #
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/bindings/python/examples/cindex/cindex-includes.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/bindings/python/examples/cindex/cindex-includes.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/bindings/python/examples/cindex/cindex-includes.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ===- cindex-includes.py - cindex/Python Inclusion Graph -----*- python -*--===#
 #
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/tools/scan-view/bin/scan-view
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/tools/scan-view/bin/scan-view
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/tools/scan-view/bin/scan-view
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/tools/scan-view/share/startfile.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/tools/scan-view/share/startfile.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/tools/scan-view/share/startfile.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/ABITest/ABITestGen.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/ABITest/ABITestGen.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/ABITest/ABITestGen.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/CIndex/completion_logger_server.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/CIndex/completion_logger_server.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/CIndex/completion_logger_server.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/CaptureCmd
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/CaptureCmd
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/CaptureCmd
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/CmpDriver
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/CmpDriver
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/CmpDriver
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/FindSpecRefs
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/FindSpecRefs
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/FindSpecRefs
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import re
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/FuzzTest
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/FuzzTest
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/FuzzTest
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/TestUtils/deep-stack.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/TestUtils/deep-stack.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/TestUtils/deep-stack.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/CmpRuns.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/analyzer/CmpRuns.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/CmpRuns.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SATestAdd.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/analyzer/SATestAdd.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SATestAdd.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Static Analyzer qualification infrastructure: adding a new project to
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SATestBuild.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/analyzer/SATestBuild.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SATestBuild.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Static Analyzer qualification infrastructure.
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SATestUpdateDiffs.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/analyzer/SATestUpdateDiffs.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SATestUpdateDiffs.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Update reference results for static analyzer.
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SumTimerInfo.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/analyzer/SumTimerInfo.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/SumTimerInfo.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """
 Script to Summarize statistics in the scan-build output.
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/exploded-graph-rewriter.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/analyzer/exploded-graph-rewriter.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/analyzer/exploded-graph-rewriter.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # ===- exploded-graph-rewriter.py - ExplodedGraph dump tool -----*- python -*--#
 #
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/check_cfc/check_cfc.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/check_cfc/check_cfc.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/check_cfc/check_cfc.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Check CFC - Check Compile Flow Consistency
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/check_cfc/obj_diff.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/check_cfc/obj_diff.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/check_cfc/obj_diff.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/check_cfc/test_check_cfc.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/check_cfc/test_check_cfc.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/check_cfc/test_check_cfc.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Test internal functions within check_cfc.py."""
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/modfuzz.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/modfuzz.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/modfuzz.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/token-delta.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/clang/utils/token-delta.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/clang/utils/token-delta.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import absolute_import, division, print_function
 import os
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/asan/scripts/asan_symbolize.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/compiler-rt/lib/asan/scripts/asan_symbolize.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/asan/scripts/asan_symbolize.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/fuzzer/scripts/unbalanced_allocs.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/compiler-rt/lib/fuzzer/scripts/unbalanced_allocs.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/fuzzer/scripts/unbalanced_allocs.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/sanitizer_common/scripts/sancov.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/compiler-rt/lib/sanitizer_common/scripts/sancov.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/compiler-rt/lib/sanitizer_common/scripts/sancov.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/libcxx/utils/cat_files.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/libcxx/utils/cat_files.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/libcxx/utils/cat_files.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/libcxx/utils/generate_feature_test_macro_components.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/libcxx/utils/generate_feature_test_macro_components.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/libcxx/utils/generate_feature_test_macro_components.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 from builtins import range
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lld/utils/benchmark.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lld/utils/benchmark.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lld/utils/benchmark.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/examples/python/file_extract.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lldb/examples/python/file_extract.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/examples/python/file_extract.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import string
 import struct
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/packages/Python/lldbsuite/test/bench.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lldb/packages/Python/lldbsuite/test/bench.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/packages/Python/lldbsuite/test/bench.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/scripts/analyze-project-deps.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lldb/scripts/analyze-project-deps.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/scripts/analyze-project-deps.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import argparse
 import itertools
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/scripts/verify_api.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lldb/scripts/verify_api.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/scripts/verify_api.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import subprocess
 import optparse
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/utils/lui/lui.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lldb/utils/lui/lui.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/utils/lui/lui.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/utils/lui/sandbox.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/lldb/utils/lui/sandbox.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/lldb/utils/lui/sandbox.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/test/BugPoint/compile-custom.ll.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/test/BugPoint/compile-custom.ll.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/test/BugPoint/compile-custom.ll.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/test/Other/opt-bisect-helper.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/test/Other/opt-bisect-helper.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/test/Other/opt-bisect-helper.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/test/TableGen/JSON-check.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/test/TableGen/JSON-check.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/test/TableGen/JSON-check.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 import subprocess
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/opt-diff.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/tools/opt-viewer/opt-diff.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/opt-diff.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/opt-stats.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/tools/opt-viewer/opt-stats.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/opt-stats.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/opt-viewer.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/tools/opt-viewer/opt-viewer.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/opt-viewer.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/optrecord.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/tools/opt-viewer/optrecord.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/tools/opt-viewer/optrecord.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/Misc/zkill
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/Misc/zkill
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/Misc/zkill
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import re
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/abtest.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/abtest.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/abtest.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/bisect
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/bisect
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/bisect
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/bugpoint_gisel_reducer.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/bugpoint_gisel_reducer.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/bugpoint_gisel_reducer.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Reduces GlobalISel failures.
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/clang-parse-diagnostics-file
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/clang-parse-diagnostics-file
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/clang-parse-diagnostics-file
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import plistlib
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/create_ladder_graph.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/create_ladder_graph.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/create_ladder_graph.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/extract_symbols.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/extract_symbols.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/extract_symbols.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A tool for extracting a list of symbols to export
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/extract_vplan.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/extract_vplan.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/extract_vplan.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/indirect_calls.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/indirect_calls.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/indirect_calls.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/lit/ProgressBar.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/lit/ProgressBar.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/lit/ProgressBar.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import sys
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import sys
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 import os
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import argparse
 import platform
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/check_path.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/shtest-shell/check_path.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/check_path.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/llvm-gisel-cov.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/llvm-gisel-cov.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/llvm-gisel-cov.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Summarize the information in the given coverage files.
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/prepare-code-coverage-artifact.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/prepare-code-coverage-artifact.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/prepare-code-coverage-artifact.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/release/findRegressions-nightly.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/release/findRegressions-nightly.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/release/findRegressions-nightly.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from __future__ import print_function
 
 import re, string, sys, os, time
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/release/findRegressions-simple.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/release/findRegressions-simple.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/release/findRegressions-simple.py
@@ -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: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/shuffle_fuzz.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/shuffle_fuzz.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/shuffle_fuzz.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A shuffle vector fuzz tester.
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/shuffle_select_fuzz_tester.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/shuffle_select_fuzz_tester.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/shuffle_select_fuzz_tester.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A shuffle-select vector fuzz tester.
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/sort_includes.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/sort_includes.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/sort_includes.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """Script to sort the top-most block of #include lines.
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/unicode-case-fold.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/unicode-case-fold.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/unicode-case-fold.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Unicode case folding database conversion utility
 
Index: llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/wciia.py
===================================================================
--- llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7.orig/llvm/utils/wciia.py
+++ llvm-toolchain-snapshot_19~++20240423112228+dbcfb434a9c7/llvm/utils/wciia.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 wciia - Whose Code Is It Anyway
 
 |