TomatoCocotree
上传
6a62ffb
raw
history blame contribute delete
No virus
342 Bytes
from contextlib import contextmanager
import sys
@contextmanager
def silence_log():
old_stdout = sys.stdout
old_stderr = sys.stderr
try:
with open(os.devnull, "w") as new_target:
sys.stdout = new_target
yield new_target
finally:
sys.stdout = old_stdout
sys.stderr = old_stderr