Python os._exit() Method
Definition and Usage
The os._exit()
method exits the process with
the specified status.
This method will not call any cleanup handlers, flushing stdio buffers, etc.
Syntax
os._exit(status)
Parameter Values
Parameter | Description |
---|---|
status | Required. An integer value or EX_ value (defined in OS Constants) |
Technical Details
Return Value: | None. |
---|---|
Python Version: |