Lines Matching defs:status
583 int status = PyErr_WarnFormat(
587 if (status < 0) {
818 status: object = None
821 Exit the interpreter by raising SystemExit(status).
823 If the status is omitted or None, it defaults to zero (i.e., success).
824 If the status is an integer, it will be used as the system exit status.
826 exit status will be one (i.e., failure).
830 sys_exit_impl(PyObject *module, PyObject *status)
834 PyErr_SetObject(PyExc_SystemExit, status);
1207 Check status of origin tracking for coroutine objects in this thread.
2192 PyStatus status;
2196 status = PyWideStringList_Append(options, entry->value);
2197 if (_PyStatus_EXCEPTION(status)) {
2198 return status;
2210 PyStatus status;
2214 status = PyWideStringList_Append(&config->xoptions, entry->value);
2215 if (_PyStatus_EXCEPTION(status)) {
2216 return status;
3207 PyStatus status = _PySys_SetPreliminaryStderr(sysdict);
3208 if (_PyStatus_EXCEPTION(status)) {
3209 return status;
3212 status = _PySys_InitCore(tstate, sysdict);
3213 if (_PyStatus_EXCEPTION(status)) {
3214 return status;