Skip to content

Commit 7001c1c

Browse files
committed
remove some debug code
1 parent bcb10e3 commit 7001c1c

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

python/private/stage2_bootstrap_template.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ def get_build_data(self):
7373
# Use utf-8-sig to handle Windows BOM
7474
with open(path, 'rb') as fp:
7575
data = fp.read()
76-
raise Exception("bogus")
7776
return data.decode('utf-8-sig')
7877
except Exception as exc:
7978
if hasattr(exc, "add_note"):

tests/build_data/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ py_test(
1414
py_binary(
1515
name = "print_build_data",
1616
srcs = ["print_build_data.py"],
17-
python_version = "3.12",
1817
deps = ["//python/runfiles"],
1918
)
2019

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
import bazel_binary_info
22

3-
print(bazel_binary_info)
43
print(bazel_binary_info.get_build_data())

0 commit comments

Comments
 (0)