(self, exc_type, exc_value, traceback)
| 163 | return CapturedIO(stdout, stderr, outputs) |
| 164 | |
| 165 | def __exit__(self, exc_type, exc_value, traceback): |
| 166 | sys.stdout = self.sys_stdout |
| 167 | sys.stderr = self.sys_stderr |
| 168 | if self.display and self.shell: |
| 169 | self.shell.display_pub = self.save_display_pub |
| 170 | sys.displayhook = self.save_display_hook |
nothing calls this directly
no outgoing calls
no test coverage detected