I'm trying to use a with
statement to suppress sys.stdout
or sys.stderr
individually. I found a tutorial that didn't work. I'm using Python 3.6.4
and I think the tutorial is some version of Python 2
.
I looked it up on SO and found a few but with applications that didn't work or did not apply to this situation.
This doesn't apply:Python subprocess supress stdout and stderr
Couldn't get any of the with
statements to work:
Suppress stdout / stderr print from Python functions
This is for fortran: Redirecting FORTRAN (called via F2PY) output in Python
from contextlib import contextmanager
@contextmanager
def suppress_console(file=sys.stdout):
with open(os.devnull, "w") as devnull:
old_file = file
file = devnull
try:
yield
finally:
file = old_file
with suppress_console():
print(1, file=sys.stdout)
# 1
I use something like this:
Example:
Output:
Notes:
__exit__
method. You might look into crafting a more robust exit method.