Lines Matching refs:auge
3104 expr_ty auge; in compiler_augassign() local
3110 auge = Attribute(e->v.Attribute.value, e->v.Attribute.attr, in compiler_augassign()
3112 if (auge == NULL) in compiler_augassign()
3114 VISIT(c, expr, auge); in compiler_augassign()
3117 auge->v.Attribute.ctx = AugStore; in compiler_augassign()
3118 VISIT(c, expr, auge); in compiler_augassign()
3121 auge = Subscript(e->v.Subscript.value, e->v.Subscript.slice, in compiler_augassign()
3123 if (auge == NULL) in compiler_augassign()
3125 VISIT(c, expr, auge); in compiler_augassign()
3128 auge->v.Subscript.ctx = AugStore; in compiler_augassign()
3129 VISIT(c, expr, auge); in compiler_augassign()