[PATCH] D70730: [UpdateTestChecks] Change shebang from python to python3

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 26 10:49:18 PST 2019


MaskRay created this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
MaskRay added reviewers: gbedwell, RKSimon, lebedev.ri.

'python' means Python 2 on some platforms while Python 3 on others.
'python3' is Python 3 only. Python 2.7 End of Life is set to January 1,

2020. Getting rid of Python 2 support reduces maintenance burden.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D70730

Files:
  llvm/utils/update_mca_test_checks.py


Index: llvm/utils/update_mca_test_checks.py
===================================================================
--- llvm/utils/update_mca_test_checks.py
+++ llvm/utils/update_mca_test_checks.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 """A test case update script.
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70730.231102.patch
Type: text/x-patch
Size: 292 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191126/1ac425ff/attachment.bin>


More information about the llvm-commits mailing list