mirror of
https://github.com/littlefs-project/littlefs.git
synced 2025-12-07 08:02:46 +00:00
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:
@@ -544,7 +544,8 @@ def table(Result, results, diff_results=None, *,
|
||||
depth=1,
|
||||
hot=None,
|
||||
**_):
|
||||
all_, all = all, __builtins__.all
|
||||
import builtins
|
||||
all_, all = all, builtins.all
|
||||
|
||||
if by is None:
|
||||
by = Result._by
|
||||
|
||||
Reference in New Issue
Block a user