(status)
| 42 | |
| 43 | |
| 44 | def waitstatus_to_exitcode(status): |
| 45 | try: |
| 46 | return os.waitstatus_to_exitcode(status) |
| 47 | except ValueError: |
| 48 | # The child exited, but we don't understand its status. |
| 49 | # This shouldn't happen, but if it does, let's just |
| 50 | # return that status; perhaps that helps debug it. |
| 51 | return status |
| 52 | |
| 53 | |
| 54 | class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop): |
no outgoing calls
no test coverage detected
searching dependent graphs…