Searched refs:auge (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 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() [all …]
|