Searched refs:exc_state (Results 1 – 3 of 3) sorted by relevance
383 tstate->exc_state.exc_type = NULL; in new_threadstate()384 tstate->exc_state.exc_value = NULL; in new_threadstate()385 tstate->exc_state.exc_traceback = NULL; in new_threadstate()386 tstate->exc_state.previous_item = NULL; in new_threadstate()387 tstate->exc_info = &tstate->exc_state; in new_threadstate()580 Py_CLEAR(tstate->exc_state.exc_type); in PyThreadState_Clear()581 Py_CLEAR(tstate->exc_state.exc_value); in PyThreadState_Clear()582 Py_CLEAR(tstate->exc_state.exc_traceback); in PyThreadState_Clear()585 if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) { in PyThreadState_Clear()
20 exc_state_traverse(_PyErr_StackItem *exc_state, visitproc visit, void *arg) in exc_state_traverse() argument22 Py_VISIT(exc_state->exc_type); in exc_state_traverse()23 Py_VISIT(exc_state->exc_value); in exc_state_traverse()24 Py_VISIT(exc_state->exc_traceback); in exc_state_traverse()101 exc_state_clear(_PyErr_StackItem *exc_state) in exc_state_clear() argument104 t = exc_state->exc_type; in exc_state_clear()105 v = exc_state->exc_value; in exc_state_clear()106 tb = exc_state->exc_traceback; in exc_state_clear()107 exc_state->exc_type = NULL; in exc_state_clear()108 exc_state->exc_value = NULL; in exc_state_clear()[all …]
246 _PyErr_StackItem exc_state; member