()
| 602 | |
| 603 | @contextlib.contextmanager |
| 604 | def swallow_io(): |
| 605 | stream = WriteOnlyStringIO() |
| 606 | with contextlib.redirect_stdout(stream): |
| 607 | with contextlib.redirect_stderr(stream): |
| 608 | with redirect_stdin(stream): |
| 609 | yield |
| 610 | |
| 611 | |
| 612 | @contextlib.contextmanager |
no test coverage detected