(self, value)
| 156 | |
| 157 | @stdin.setter |
| 158 | def stdinSet(self, value): |
| 159 | # Use the grotesque name 'stdinSet' to suppress pyflakes. |
| 160 | if self._process is not None: |
| 161 | raise UserCritical( |
| 162 | 'BUG: Trying to set stdin on PipelineCommand ' |
| 163 | 'after it has already been .start-ed') |
| 164 | |
| 165 | self._stdin = value |
| 166 | |
| 167 | @property |
| 168 | def stdout(self): |
nothing calls this directly
no test coverage detected