Searched defs:comprehension (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Include/
H A DPython-ast.h519 #define comprehension(a0, a1, a2, a3) _Py_comprehension(a0, a1, a2, a3) macro
/external/python/cpython2/Python/
H A DPython-ast.c949 comprehension_type = make_type("comprehension", &AST_type,
2039 comprehension(expr_ty target, expr_ty iter, asdl_seq * ifs, PyArena *arena) function
2044 "field target is required for comprehension");
2049 "field iter is required for comprehension");
6425 PyErr_SetString(PyExc_TypeError, "required field \"target\" missing from comprehension");
6437 PyErr_SetString(PyExc_TypeError, "required field \"iter\" missing from comprehension");
6447 PyErr_Format(PyExc_TypeError, "comprehension field \"ifs\" must be a list, not a %.200s", tmp->ob_type->tp_name);
6458 PyErr_SetString(PyExc_RuntimeError, "comprehension field \"ifs\" changed size during iteration");
6466 PyErr_SetString(PyExc_TypeError, "required field \"ifs\" missing from comprehension");
6469 *out = comprehension(targe
[all...]

Completed in 87 milliseconds