Searched refs:AugStore (Results 1 – 5 of 5) sorted by relevance
2364 case AugStore: in compiler_nameop()2386 case AugStore: in compiler_nameop()2403 case AugStore: in compiler_nameop()2418 case AugStore: in compiler_nameop()3035 if (e->v.Attribute.ctx != AugStore) in compiler_visit_expr()3044 case AugStore: in compiler_visit_expr()3070 case AugStore: in compiler_visit_expr()3071 VISIT_SLICE(c, e->v.Subscript.slice, AugStore); in compiler_visit_expr()3116 auge->v.Attribute.ctx = AugStore; in compiler_augassign()3127 auge->v.Subscript.ctx = AugStore; in compiler_augassign()[all …]
385 assert(ctx != AugStore && ctx != AugLoad); in set_context()
2947 case AugStore: in ast2obj_expr_context()5965 *out = AugStore; in obj2ast_expr_context()
86 expr_context = Load | Store | Del | AugLoad | AugStore | Param
11 typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5, enumerator