Searched defs:TryExcept (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
H A DExceptions.py55 class TryExcept(Test): class in inherits:Test
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
H A Dast.py1269 class TryExcept(Node): class in inherits:Node
1292 return "TryExcept(%s, %s, %s)" % (repr(self.body), repr(self.handlers), repr(self.else_))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A DPython-ast.h146 } TryExcept; member in union:_stmt::__anon2885
420 #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A DPython-ast.h146 } TryExcept; member in union:_stmt::__anon3192
420 #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A DPython-ast.c715 TryExcept_type = make_type("TryExcept", stmt_type, TryExcept_fields, 3);
1301 TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno, function
1309 p->v.TryExcept.body = body;
1310 p->v.TryExcept.handlers = handlers;
1311 p->v.TryExcept.orelse = orelse;
2425 value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt);
2430 value = ast2obj_list(o->v.TryExcept.handlers,
2436 value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt);
4278 PyErr_Format(PyExc_TypeError, "TryExcept field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4293 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from TryExcept");
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A DPython-ast.c698 TryExcept_type = make_type("TryExcept", stmt_type, TryExcept_fields, 3);
1284 TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno, function
1292 p->v.TryExcept.body = body;
1293 p->v.TryExcept.handlers = handlers;
1294 p->v.TryExcept.orelse = orelse;
2408 value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt);
2413 value = ast2obj_list(o->v.TryExcept.handlers,
2419 value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt);
4261 PyErr_Format(PyExc_TypeError, "TryExcept field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4276 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from TryExcept");
[all...]

Completed in 93 milliseconds