System exit support.
| Class | Status | Object to hang EX_* values off of as a substitute for posix. |
| Class | ExitStatus | Standard exit status codes for system programs. |
| Function | exit | Exit the python interpreter with the given status and an optional message. |
Exit the python interpreter with the given status and an optional message.
| Parameters | status | An exit status. An appropriate value from ExitStatus is recommended. (type: Union[int, ExitStatus]) |
| message | An optional message to print. (type: str) | |
| Returns | Undocumented (type: typing.NoReturn) | |