diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-03 01:04:23 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-03 01:04:23 -0400 |
commit | 1f0eea05f78b032be72ee5b5787421acef61588d (patch) | |
tree | df649dbdcb14e9a2afce0d6e4629439dd72e1421 /Python/symtable.c | |
parent | 4c0dd9f7ff8d58c2da9cccd1ca1ad7ee96e29ce1 (diff) | |
download | cpython-1f0eea05f78b032be72ee5b5787421acef61588d.tar.gz |
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Diffstat (limited to 'Python/symtable.c')
-rw-r--r-- | Python/symtable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 3677e59748..354b799678 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1135,7 +1135,7 @@ static int symtable_visit_stmt(struct symtable *st, stmt_ty s) { if (++st->recursion_depth > st->recursion_limit) { - PyErr_SetString(PyExc_RuntimeError, + PyErr_SetString(PyExc_RecursionError, "maximum recursion depth exceeded during compilation"); VISIT_QUIT(st, 0); } @@ -1357,7 +1357,7 @@ static int symtable_visit_expr(struct symtable *st, expr_ty e) { if (++st->recursion_depth > st->recursion_limit) { - PyErr_SetString(PyExc_RuntimeError, + PyErr_SetString(PyExc_RecursionError, "maximum recursion depth exceeded during compilation"); VISIT_QUIT(st, 0); } |