()
| 420 | |
| 421 | @contextlib.contextmanager |
| 422 | def swallow_io(): |
| 423 | stream = WriteOnlyStringIO() |
| 424 | with contextlib.redirect_stdout(stream): |
| 425 | with contextlib.redirect_stderr(stream): |
| 426 | with redirect_stdin(stream): |
| 427 | yield |
| 428 | |
| 429 | |
| 430 | @contextlib.contextmanager |
no test coverage detected