Lines Matching refs:simple
246 Py_CLEAR(state->simple);
344 if ((state->simple = PyUnicode_InternFromString("simple")) == NULL) return 0;
441 "simple",
1140 " | AnnAssign(expr target, expr annotation, expr? value, int simple)\n"
1215 "AnnAssign(expr target, expr annotation, expr? value, int simple)");
2148 _PyAST_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int simple,
2170 p->v.AnnAssign.simple = simple;
3888 value = ast2obj_int(state, o->v.AnnAssign.simple);
3890 if (PyObject_SetAttr(result, state->simple, value) == -1)
6556 int simple;
6609 if (_PyObject_LookupAttr(obj, state->simple, &tmp) < 0) {
6613 PyErr_SetString(PyExc_TypeError, "required field \"simple\" missing from AnnAssign");
6621 res = obj2ast_int(state, tmp, &simple, arena);
6626 *out = _PyAST_AnnAssign(target, annotation, value, simple, lineno,