mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 01:52:56 +01:00
14 lines
344 B
Python
14 lines
344 B
Python
import jwutil
|
|
|
|
print "This is without muted output"
|
|
|
|
with jwutil.MuteStdIO():
|
|
print "This is with muted output"
|
|
|
|
with jwutil.MuteStdIO():
|
|
print "This will have an error"
|
|
print "Second suppressed line of output"
|
|
print "Third suppressed line of output"
|
|
raise Exception("Something went wrong")
|
|
|
|
print "Output is unmuted again"
|