Searched defs:DictComp (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython2/Lib/compiler/
H A Dast.py914 class DictComp(Node): class in inherits:Node
936 return "DictComp(%s, %s, %s)" % (repr(self.key), repr(self.value), repr(self.quals))
/external/python/cpython2/Include/
H A DPython-ast.h246 } DictComp; member in union:_expr::__anon19188
475 #define DictComp(a0, a1, a2, a3, a4, a5) _Py_DictComp(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython3/Include/
H A DPython-ast.h269 } DictComp; member in union:_expr::__anon19743
550 #define DictComp(a0, a1, a2, a3, a4, a5) _Py_DictComp(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython2/Python/
H A DPython-ast.c760 DictComp_type = make_type("DictComp", expr_type, DictComp_fields, 3);
1688 DictComp(expr_ty key, expr_ty value, asdl_seq * generators, int lineno, int function
1694 "field key is required for DictComp");
1699 "field value is required for DictComp");
1706 p->v.DictComp.key = key;
1707 p->v.DictComp.value = value;
1708 p->v.DictComp.generators = generators;
2712 value = ast2obj_expr(o->v.DictComp.key);
2717 value = ast2obj_expr(o->v.DictComp.value);
2722 value = ast2obj_list(o->v.DictComp
[all...]
/external/python/cpython3/Python/
H A DPython-ast.c943 DictComp_type = make_type("DictComp", expr_type, DictComp_fields, 3);
1961 DictComp(expr_ty key, expr_ty value, asdl_seq * generators, int lineno, int function
1967 "field key is required for DictComp");
1972 "field value is required for DictComp");
1979 p->v.DictComp.key = key;
1980 p->v.DictComp.value = value;
1981 p->v.DictComp.generators = generators;
3205 value = ast2obj_expr(o->v.DictComp.key);
3210 value = ast2obj_expr(o->v.DictComp.value);
3215 value = ast2obj_list(o->v.DictComp
[all...]

Completed in 290 milliseconds