(self)
| 1144 | _active.append(self) |
| 1145 | |
| 1146 | def _get_devnull(self): |
| 1147 | if not hasattr(self, '_devnull'): |
| 1148 | self._devnull = os.open(os.devnull, os.O_RDWR) |
| 1149 | return self._devnull |
| 1150 | |
| 1151 | def _stdin_write(self, input): |
| 1152 | if input: |
no test coverage detected