Context manager for temporarily redirecting stderr to another file.
| 425 | |
| 426 | |
| 427 | class redirect_stderr(_RedirectStream): |
| 428 | """Context manager for temporarily redirecting stderr to another file.""" |
| 429 | |
| 430 | _stream = "stderr" |
| 431 | |
| 432 | |
| 433 | class suppress(AbstractContextManager): |
no outgoing calls
searching dependent graphs…