(self, val)
| 522 | return sys.stdout if self._ostream is None else self._ostream |
| 523 | |
| 524 | def _set_ostream(self, val): |
| 525 | assert val is None or (hasattr(val, 'write') and hasattr(val, 'flush')) |
| 526 | self._ostream = val |
| 527 | |
| 528 | ostream = property(_get_ostream, _set_ostream) |
| 529 |
nothing calls this directly
no outgoing calls
no test coverage detected