module documentation

System exit support.

Class ExitStatus Standard exit status codes for system programs.
Function exit Exit the python interpreter with the given status and an optional message.
def exit(status: int | ExitStatus, message: str = '') -> typing.NoReturn: ΒΆ

Exit the python interpreter with the given status and an optional message.

Parameters
status:int | ExitStatusAn exit status. An appropriate value from ExitStatus is recommended.
message:strAn optional message to print.
Returns
typing.NoReturnUndocumented