(self)
| 28 | self._stdin_closed = self._loop.create_future() |
| 29 | |
| 30 | def __repr__(self): |
| 31 | info = [self.__class__.__name__] |
| 32 | if self.stdin is not None: |
| 33 | info.append(f'stdin={self.stdin!r}') |
| 34 | if self.stdout is not None: |
| 35 | info.append(f'stdout={self.stdout!r}') |
| 36 | if self.stderr is not None: |
| 37 | info.append(f'stderr={self.stderr!r}') |
| 38 | return '<{}>'.format(' '.join(info)) |
| 39 | |
| 40 | def connection_made(self, transport): |
| 41 | self._transport = transport |