(self)
| 185 | print(formatted_data) |
| 186 | |
| 187 | def flush(self): |
| 188 | # When outputing to a file, the file is currently closed with each write, |
| 189 | # so the flush doesn't need to do anything. |
| 190 | if self.filename is None: |
| 191 | sys.stdout.flush() |
| 192 | |
| 193 | |
| 194 | class OverwritingStdErrOutputStream(object): |
no outgoing calls
no test coverage detected