Home
last modified time | relevance | path

Searched refs:n_except (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dast.c3067 int n_except = (nch - 3)/3; in ast_for_try_stmt() local
3085 n_except--; in ast_for_try_stmt()
3091 n_except--; in ast_for_try_stmt()
3099 n_except--; in ast_for_try_stmt()
3107 if (n_except > 0) { in ast_for_try_stmt()
3111 asdl_seq *handlers = asdl_seq_new(n_except, c->c_arena); in ast_for_try_stmt()
3115 for (i = 0; i < n_except; i++) { in ast_for_try_stmt()
/external/python/cpython3/Python/
Dast.c4177 int end_lineno, end_col_offset, n_except = (nch - 3)/3; in ast_for_try_stmt() local
4196 n_except--; in ast_for_try_stmt()
4202 n_except--; in ast_for_try_stmt()
4210 n_except--; in ast_for_try_stmt()
4218 if (n_except > 0) { in ast_for_try_stmt()
4221 handlers = _Py_asdl_seq_new(n_except, c->c_arena); in ast_for_try_stmt()
4225 for (i = 0; i < n_except; i++) { in ast_for_try_stmt()
4243 last_handler = (excepthandler_ty) asdl_seq_GET(handlers, n_except - 1); in ast_for_try_stmt()