
This is the first commit in a series that will reformat all the python files in the LLVM repository. Reformatting is done with `black`. See more information here: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: jhenderson, JDevlieghere, MatzeB Differential Revision: https://reviews.llvm.org/D150545
8 lines
159 B
Python
8 lines
159 B
Python
from __future__ import print_function
|
|
import os
|
|
|
|
|
|
def execute():
|
|
for name in ["FOO", "BAR"]:
|
|
print(name, "=", os.environ.get(name, "[undefined]"))
|