This commit is contained in:
2021-09-27 16:02:11 -04:00
parent 90edf9bd45
commit e18232df84
35 changed files with 3037 additions and 78 deletions

View File

@@ -256,8 +256,8 @@ def setup_for_distributed(is_master):
def print(*args, **kwargs):
force = kwargs.pop("force", False)
if is_master or force:
builtin_print(*args, **kwargs)
if is_master or force or True:
print(*args, **kwargs)
__builtin__.print = print