(self)
| 43 | return len(s) |
| 44 | |
| 45 | def flush(self): |
| 46 | st = self._stream |
| 47 | if st is not None: |
| 48 | try: |
| 49 | st.flush() |
| 50 | except Exception: |
| 51 | pass |
| 52 | |
| 53 | def isatty(self): |
| 54 | return bool(getattr(self._stream, "isatty", lambda: False)()) |
no outgoing calls
no test coverage detected