Return exit code of process or `None` if it has yet to stop
(self)
| 230 | |
| 231 | @property |
| 232 | def exitcode(self): |
| 233 | ''' |
| 234 | Return exit code of process or `None` if it has yet to stop |
| 235 | ''' |
| 236 | self._check_closed() |
| 237 | if self._popen is None: |
| 238 | return self._popen |
| 239 | return self._popen.poll() |
| 240 | |
| 241 | @property |
| 242 | def ident(self): |
nothing calls this directly
no test coverage detected