Skip to content

Commit f096e7d

Browse files
authoredMar 31, 2025··
use string.removesuffix (#1382)
Use the builtin `removesuffix()` in toolchain utils. Fixes cd59e93
1 parent 3c3f5f9 commit f096e7d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎foreign_cc/private/cc_toolchain_util.bzl

+1-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _filter(list_, predicate, inverse):
109109
def _files_map(files_list, suffix = ""):
110110
by_names_map = {}
111111
for file_ in files_list:
112-
name_ = _removesuffix(_file_name_no_ext(file_.basename), suffix)
112+
name_ = _file_name_no_ext(file_.basename).removesuffix(suffix)
113113
value = by_names_map.get(name_)
114114
if value:
115115
fail("Can not have libraries with the same name in the same category")
@@ -390,6 +390,3 @@ def _prefix(text, from_str, prefix):
390390
def _file_name_no_ext(basename):
391391
(before, _separator, _after) = basename.rpartition(".")
392392
return before
393-
394-
def _removesuffix(s, sub):
395-
return s[:-len(sub)] if sub and s.endswith(sub) else s

0 commit comments

Comments
 (0)
Please sign in to comment.