scripts: Replaced __builtins__ with builtins

Apparently __builtins__ is a CPython implementation detail, and behaves
differently when executed vs imported???

import builtins is the correct way to go about this.
This commit is contained in:
Christopher Haster
2024-12-28 00:52:44 -06:00
parent 66bf005bb8
commit 0adec7f15c
11 changed files with 22 additions and 11 deletions

View File

@@ -262,7 +262,8 @@ def main(tags, *,
block_count=None,
off=None,
**args):
list_, list = list, __builtins__.list
import builtins
list_, list = list, builtins.list
# list all known tags
if list_: