Restore a previously re-reouted stdout back to the original destination
(self)
| 4021 | sys.stderr = self |
| 4022 | |
| 4023 | def restore_stdout(self): |
| 4024 | """ |
| 4025 | Restore a previously re-reouted stdout back to the original destination |
| 4026 | """ |
| 4027 | Window._restore_stdout() |
| 4028 | |
| 4029 | def restore_stderr(self): |
| 4030 | """ |
nothing calls this directly
no test coverage detected