Lines Matching refs:exc_state
21 exc_state_traverse(_PyErr_StackItem *exc_state, visitproc visit, void *arg) in exc_state_traverse() argument
23 Py_VISIT(exc_state->exc_type); in exc_state_traverse()
24 Py_VISIT(exc_state->exc_value); in exc_state_traverse()
25 Py_VISIT(exc_state->exc_traceback); in exc_state_traverse()
102 exc_state_clear(_PyErr_StackItem *exc_state) in exc_state_clear() argument
105 t = exc_state->exc_type; in exc_state_clear()
106 v = exc_state->exc_value; in exc_state_clear()
107 tb = exc_state->exc_traceback; in exc_state_clear()
108 exc_state->exc_type = NULL; in exc_state_clear()
109 exc_state->exc_value = NULL; in exc_state_clear()
110 exc_state->exc_traceback = NULL; in exc_state_clear()