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

/external/python/cpython2/Include/
H A DPython-ast.h350 } ExceptHandler; member in union:_excepthandler::__anon17354
522 #define ExceptHandler(a0, a1, a2, a3, a4, a5) _Py_ExceptHandler(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython2/Python/
H A DPython-ast.c956 ExceptHandler_type = make_type("ExceptHandler", excepthandler_type,
2062 ExceptHandler(expr_ty type, expr_ty name, asdl_seq * body, int lineno, int function
2070 p->v.ExceptHandler.type = type;
2071 p->v.ExceptHandler.name = name;
2072 p->v.ExceptHandler.body = body;
3187 value = ast2obj_expr(o->v.ExceptHandler.type);
3192 value = ast2obj_expr(o->v.ExceptHandler.name);
3197 value = ast2obj_list(o->v.ExceptHandler.body, ast2obj_stmt);
6551 PyErr_Format(PyExc_TypeError, "ExceptHandler field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
6562 PyErr_SetString(PyExc_RuntimeError, "ExceptHandler fiel
[all...]

Completed in 44 milliseconds