(self)
| 133 | # the operation that printed. Logs are best-effort; work is not. |
| 134 | pass |
| 135 | def flush(self): |
| 136 | try: |
| 137 | getattr(self.fp, 'flush', lambda: None)() |
| 138 | except OSError: |
| 139 | pass |
| 140 | def __getattr__(self, name): |
| 141 | return getattr(self.fp, name) |
| 142 |
no outgoing calls