(self, item)
| 50 | self._stream = None |
| 51 | |
| 52 | def __getattr__(self, item): |
| 53 | if self._stream is None: |
| 54 | self._stream = self._process.initialize().stdin |
| 55 | return getattr(self._stream, item) |
| 56 | |
| 57 | def flush(self): |
| 58 | # if stream has not been created yet there is no reason to create it |
nothing calls this directly
no test coverage detected