(self)
| 47 | pass |
| 48 | |
| 49 | def flush(self): |
| 50 | for stream in self.streams: |
| 51 | try: |
| 52 | stream.flush() |
| 53 | except (ValueError, OSError): |
| 54 | # Skip closed or invalid streams |
| 55 | pass |
| 56 | |
| 57 | def isatty(self): |
| 58 | # Return True if any stream is a TTY |
no outgoing calls
no test coverage detected