Lines Matching defs:right
245 Py_CLEAR(state->right);
343 if ((state->right = PyUnicode_InternFromString("right")) == NULL) return 0;
536 "right",
1313 " | BinOp(expr left, operator op, expr right)\n"
1355 "BinOp(expr left, operator op, expr right)");
2632 _PyAST_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
2646 if (!right) {
2648 "field 'right' is required for BinOp");
2657 p->v.BinOp.right = right;
4308 value = ast2obj_expr(state, o->v.BinOp.right);
4310 if (PyObject_SetAttr(result, state->right, value) == -1)
8350 expr_ty right;
8386 if (_PyObject_LookupAttr(obj, state->right, &tmp) < 0) {
8390 PyErr_SetString(PyExc_TypeError, "required field \"right\" missing from BinOp");
8398 res = obj2ast_expr(state, tmp, &right, arena);
8403 *out = _PyAST_BinOp(left, op, right, lineno, col_offset, end_lineno,