Searched refs:TryExcept (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython2/Tools/pybench/ |
D | Exceptions.py | 55 class TryExcept(Test): class
|
D | README | 199 TryExcept: 125ms 126ms 0.06us 0.681ms
|
/external/python/asn1crypto/tests/ |
D | test_init.py | 93 elif sys.version_info < (3, 3) and isinstance(node, _ast.TryExcept):
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 31 TryExcept: body, handlers!, else_&
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 32 | TryExcept(stmt* body, excepthandler* handlers, stmt* orelse)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 146 } TryExcept; member 420 #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5) macro
|
/external/python/cpython2/Python/ |
D | symtable.c | 1103 VISIT_SEQ(st, stmt, s->v.TryExcept.body); in symtable_visit_stmt() 1104 VISIT_SEQ(st, stmt, s->v.TryExcept.orelse); in symtable_visit_stmt() 1105 VISIT_SEQ(st, excepthandler, s->v.TryExcept.handlers); in symtable_visit_stmt()
|
D | Python-ast.c | 1301 TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno, in TryExcept() function 1309 p->v.TryExcept.body = body; in TryExcept() 1310 p->v.TryExcept.handlers = handlers; in TryExcept() 1311 p->v.TryExcept.orelse = orelse; in TryExcept() 2425 value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt); in ast2obj_stmt() 2430 value = ast2obj_list(o->v.TryExcept.handlers, in ast2obj_stmt() 2436 value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt); in ast2obj_stmt() 4430 *out = TryExcept(body, handlers, orelse, lineno, col_offset, in obj2ast_stmt()
|
D | compile.c | 1839 VISIT_SEQ(c, stmt, s->v.TryExcept.body); in compiler_try_except() 1843 n = asdl_seq_LEN(s->v.TryExcept.handlers); in compiler_try_except() 1847 s->v.TryExcept.handlers, i); in compiler_try_except() 1875 VISIT_SEQ(c, stmt, s->v.TryExcept.orelse); in compiler_try_except()
|
D | ast.c | 3123 except_st = TryExcept(body, handlers, orelse, LINENO(n), in ast_for_try_stmt()
|
/external/python/cpython2/Demo/parser/ |
D | unparse.py | 199 if len(t.body) == 1 and isinstance(t.body[0], ast.TryExcept):
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 699 "TryExcept"
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 476 | :class:`TryExcept` | :attr:`body` | |
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 962 try_except = TryExcept(self.com_node(nodelist[2]), clauses, elseNode,
|
D | ast.py | 1269 class TryExcept(Node): class
|
/external/python/cpython3/Misc/ |
D | HISTORY | 8544 - Issue #12199: The TryExcept and TryFinally and AST nodes have been unified
|