()
| 32 | |
| 33 | @contextlib.contextmanager |
| 34 | def swallow_io(): |
| 35 | stream = WriteOnlyStringIO() |
| 36 | with contextlib.redirect_stdout(stream): |
| 37 | with contextlib.redirect_stderr(stream): |
| 38 | with redirect_stdin(stream): |
| 39 | yield |
| 40 | |
| 41 | |
| 42 | @contextlib.contextmanager |