Lines Matching refs:cause
183 Py_CLEAR(state->cause);
291 if ((state->cause = PyUnicode_InternFromString("cause")) == NULL) return 0;
483 "cause",
1148 " | Raise(expr? exc, expr? cause)\n"
1257 "Raise(expr? exc, expr? cause)");
1261 if (PyObject_SetAttr(state->Raise_type, state->cause, Py_None) == -1)
2356 _PyAST_Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, int
2365 p->v.Raise.cause = cause;
4064 value = ast2obj_expr(state, o->v.Raise.cause);
4066 if (PyObject_SetAttr(result, state->cause, value) == -1)
7415 expr_ty cause;
7434 if (_PyObject_LookupAttr(obj, state->cause, &tmp) < 0) {
7439 cause = NULL;
7446 res = obj2ast_expr(state, tmp, &cause, arena);
7451 *out = _PyAST_Raise(exc, cause, lineno, col_offset, end_lineno,