Bug 1867845 - Add len and range to the moz.build sandbox. r=firefox-build-system-reviewers,sergesanspaille

Differential Revision: https://phabricator.services.mozilla.com/D234138
This commit is contained in:
Mike Hommey
2025-01-14 21:18:19 +00:00
parent 28e7e5f50c
commit 090e8f4684

View File

@@ -110,6 +110,8 @@ class Sandbox(dict):
"True": True, "True": True,
"sorted": alphabetical_sorted, "sorted": alphabetical_sorted,
"int": int, "int": int,
"len": len,
"range": range,
"set": set, "set": set,
"tuple": tuple, "tuple": tuple,
} }