required for compatibility
(self)
| 102 | pass |
| 103 | |
| 104 | def flush(self): |
| 105 | "required for compatibility" |
| 106 | files = self.which_files.get(get_thread_id(), [self.default]) |
| 107 | for file in files: |
| 108 | try: |
| 109 | file.flush() |
| 110 | except: # noqa: E722 |
| 111 | pass |
| 112 | |
| 113 | |
| 114 | stdout = sys.stdout = OutputTee(real_stdout) |
no test coverage detected