mirror of
ssh://devgit.janware.com/janware/proj/jw-python
synced 2026-06-18 01:16:38 +02:00
14 lines
347 B
Python
14 lines
347 B
Python
import jwutils
|
|
|
|
print "This is without muted output"
|
|
|
|
with jwutils.MuteStdIO():
|
|
print "This is with muted output"
|
|
|
|
with jwutils.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"
|