(self)
| 152 | self.file.write(msg) |
| 153 | |
| 154 | def flush(self): |
| 155 | self.console.flush() |
| 156 | if self.file is not None: |
| 157 | self.file.flush() |
| 158 | os.fsync(self.file.fileno()) |
| 159 | |
| 160 | def close(self): |
| 161 | self.console.close() |
nothing calls this directly
no outgoing calls
no test coverage detected