Return exit code of process or `None` if it has yet to stop
(self)
| 223 | |
| 224 | @property |
| 225 | def exitcode(self): |
| 226 | ''' |
| 227 | Return exit code of process or `None` if it has yet to stop |
| 228 | ''' |
| 229 | self._check_closed() |
| 230 | if self._popen is None: |
| 231 | return self._popen |
| 232 | return self._popen.poll() |
| 233 | |
| 234 | @property |
| 235 | def ident(self): |
nothing calls this directly
no test coverage detected