mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
unify TryExcept and TryFinally (closes #12199)
This commit is contained in:
parent
f7d08e8522
commit
43af12b0b4
8 changed files with 78 additions and 156 deletions
|
@ -103,15 +103,11 @@ static char *Raise_fields[]={
|
|||
"exc",
|
||||
"cause",
|
||||
};
|
||||
static PyTypeObject *TryExcept_type;
|
||||
static char *TryExcept_fields[]={
|
||||
static PyTypeObject *Try_type;
|
||||
static char *Try_fields[]={
|
||||
"body",
|
||||
"handlers",
|
||||
"orelse",
|
||||
};
|
||||
static PyTypeObject *TryFinally_type;
|
||||
static char *TryFinally_fields[]={
|
||||
"body",
|
||||
"finalbody",
|
||||
};
|
||||
static PyTypeObject *Assert_type;
|
||||
|
@ -689,11 +685,8 @@ static int init_types(void)
|
|||
if (!With_type) return 0;
|
||||
Raise_type = make_type("Raise", stmt_type, Raise_fields, 2);
|
||||
if (!Raise_type) return 0;
|
||||
TryExcept_type = make_type("TryExcept", stmt_type, TryExcept_fields, 3);
|
||||
if (!TryExcept_type) return 0;
|
||||
TryFinally_type = make_type("TryFinally", stmt_type, TryFinally_fields,
|
||||
2);
|
||||
if (!TryFinally_type) return 0;
|
||||
Try_type = make_type("Try", stmt_type, Try_fields, 4);
|
||||
if (!Try_type) return 0;
|
||||
Assert_type = make_type("Assert", stmt_type, Assert_fields, 2);
|
||||
if (!Assert_type) return 0;
|
||||
Import_type = make_type("Import", stmt_type, Import_fields, 1);
|
||||
|
@ -1264,33 +1257,18 @@ Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, PyArena *arena)
|
|||
}
|
||||
|
||||
stmt_ty
|
||||
TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno,
|
||||
int col_offset, PyArena *arena)
|
||||
Try(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, asdl_seq *
|
||||
finalbody, int lineno, int col_offset, PyArena *arena)
|
||||
{
|
||||
stmt_ty p;
|
||||
p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p));
|
||||
if (!p)
|
||||
return NULL;
|
||||
p->kind = TryExcept_kind;
|
||||
p->v.TryExcept.body = body;
|
||||
p->v.TryExcept.handlers = handlers;
|
||||
p->v.TryExcept.orelse = orelse;
|
||||
p->lineno = lineno;
|
||||
p->col_offset = col_offset;
|
||||
return p;
|
||||
}
|
||||
|
||||
stmt_ty
|
||||
TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int col_offset,
|
||||
PyArena *arena)
|
||||
{
|
||||
stmt_ty p;
|
||||
p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p));
|
||||
if (!p)
|
||||
return NULL;
|
||||
p->kind = TryFinally_kind;
|
||||
p->v.TryFinally.body = body;
|
||||
p->v.TryFinally.finalbody = finalbody;
|
||||
p->kind = Try_kind;
|
||||
p->v.Try.body = body;
|
||||
p->v.Try.handlers = handlers;
|
||||
p->v.Try.orelse = orelse;
|
||||
p->v.Try.finalbody = finalbody;
|
||||
p->lineno = lineno;
|
||||
p->col_offset = col_offset;
|
||||
return p;
|
||||
|
@ -2434,35 +2412,25 @@ ast2obj_stmt(void* _o)
|
|||
goto failed;
|
||||
Py_DECREF(value);
|
||||
break;
|
||||
case TryExcept_kind:
|
||||
result = PyType_GenericNew(TryExcept_type, NULL, NULL);
|
||||
case Try_kind:
|
||||
result = PyType_GenericNew(Try_type, NULL, NULL);
|
||||
if (!result) goto failed;
|
||||
value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt);
|
||||
value = ast2obj_list(o->v.Try.body, ast2obj_stmt);
|
||||
if (!value) goto failed;
|
||||
if (PyObject_SetAttrString(result, "body", value) == -1)
|
||||
goto failed;
|
||||
Py_DECREF(value);
|
||||
value = ast2obj_list(o->v.TryExcept.handlers,
|
||||
ast2obj_excepthandler);
|
||||
value = ast2obj_list(o->v.Try.handlers, ast2obj_excepthandler);
|
||||
if (!value) goto failed;
|
||||
if (PyObject_SetAttrString(result, "handlers", value) == -1)
|
||||
goto failed;
|
||||
Py_DECREF(value);
|
||||
value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt);
|
||||
value = ast2obj_list(o->v.Try.orelse, ast2obj_stmt);
|
||||
if (!value) goto failed;
|
||||
if (PyObject_SetAttrString(result, "orelse", value) == -1)
|
||||
goto failed;
|
||||
Py_DECREF(value);
|
||||
break;
|
||||
case TryFinally_kind:
|
||||
result = PyType_GenericNew(TryFinally_type, NULL, NULL);
|
||||
if (!result) goto failed;
|
||||
value = ast2obj_list(o->v.TryFinally.body, ast2obj_stmt);
|
||||
if (!value) goto failed;
|
||||
if (PyObject_SetAttrString(result, "body", value) == -1)
|
||||
goto failed;
|
||||
Py_DECREF(value);
|
||||
value = ast2obj_list(o->v.TryFinally.finalbody, ast2obj_stmt);
|
||||
value = ast2obj_list(o->v.Try.finalbody, ast2obj_stmt);
|
||||
if (!value) goto failed;
|
||||
if (PyObject_SetAttrString(result, "finalbody", value) == -1)
|
||||
goto failed;
|
||||
|
@ -4343,7 +4311,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
if (*out == NULL) goto failed;
|
||||
return 0;
|
||||
}
|
||||
isinstance = PyObject_IsInstance(obj, (PyObject*)TryExcept_type);
|
||||
isinstance = PyObject_IsInstance(obj, (PyObject*)Try_type);
|
||||
if (isinstance == -1) {
|
||||
return 1;
|
||||
}
|
||||
|
@ -4351,6 +4319,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
asdl_seq* body;
|
||||
asdl_seq* handlers;
|
||||
asdl_seq* orelse;
|
||||
asdl_seq* finalbody;
|
||||
|
||||
if (PyObject_HasAttrString(obj, "body")) {
|
||||
int res;
|
||||
|
@ -4359,7 +4328,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
tmp = PyObject_GetAttrString(obj, "body");
|
||||
if (tmp == NULL) goto failed;
|
||||
if (!PyList_Check(tmp)) {
|
||||
PyErr_Format(PyExc_TypeError, "TryExcept field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
PyErr_Format(PyExc_TypeError, "Try field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
goto failed;
|
||||
}
|
||||
len = PyList_GET_SIZE(tmp);
|
||||
|
@ -4374,7 +4343,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
Py_XDECREF(tmp);
|
||||
tmp = NULL;
|
||||
} else {
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from TryExcept");
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Try");
|
||||
return 1;
|
||||
}
|
||||
if (PyObject_HasAttrString(obj, "handlers")) {
|
||||
|
@ -4384,7 +4353,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
tmp = PyObject_GetAttrString(obj, "handlers");
|
||||
if (tmp == NULL) goto failed;
|
||||
if (!PyList_Check(tmp)) {
|
||||
PyErr_Format(PyExc_TypeError, "TryExcept field \"handlers\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
PyErr_Format(PyExc_TypeError, "Try field \"handlers\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
goto failed;
|
||||
}
|
||||
len = PyList_GET_SIZE(tmp);
|
||||
|
@ -4399,7 +4368,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
Py_XDECREF(tmp);
|
||||
tmp = NULL;
|
||||
} else {
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"handlers\" missing from TryExcept");
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"handlers\" missing from Try");
|
||||
return 1;
|
||||
}
|
||||
if (PyObject_HasAttrString(obj, "orelse")) {
|
||||
|
@ -4409,7 +4378,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
tmp = PyObject_GetAttrString(obj, "orelse");
|
||||
if (tmp == NULL) goto failed;
|
||||
if (!PyList_Check(tmp)) {
|
||||
PyErr_Format(PyExc_TypeError, "TryExcept field \"orelse\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
PyErr_Format(PyExc_TypeError, "Try field \"orelse\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
goto failed;
|
||||
}
|
||||
len = PyList_GET_SIZE(tmp);
|
||||
|
@ -4424,45 +4393,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
Py_XDECREF(tmp);
|
||||
tmp = NULL;
|
||||
} else {
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"orelse\" missing from TryExcept");
|
||||
return 1;
|
||||
}
|
||||
*out = TryExcept(body, handlers, orelse, lineno, col_offset,
|
||||
arena);
|
||||
if (*out == NULL) goto failed;
|
||||
return 0;
|
||||
}
|
||||
isinstance = PyObject_IsInstance(obj, (PyObject*)TryFinally_type);
|
||||
if (isinstance == -1) {
|
||||
return 1;
|
||||
}
|
||||
if (isinstance) {
|
||||
asdl_seq* body;
|
||||
asdl_seq* finalbody;
|
||||
|
||||
if (PyObject_HasAttrString(obj, "body")) {
|
||||
int res;
|
||||
Py_ssize_t len;
|
||||
Py_ssize_t i;
|
||||
tmp = PyObject_GetAttrString(obj, "body");
|
||||
if (tmp == NULL) goto failed;
|
||||
if (!PyList_Check(tmp)) {
|
||||
PyErr_Format(PyExc_TypeError, "TryFinally field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
goto failed;
|
||||
}
|
||||
len = PyList_GET_SIZE(tmp);
|
||||
body = asdl_seq_new(len, arena);
|
||||
if (body == NULL) goto failed;
|
||||
for (i = 0; i < len; i++) {
|
||||
stmt_ty value;
|
||||
res = obj2ast_stmt(PyList_GET_ITEM(tmp, i), &value, arena);
|
||||
if (res != 0) goto failed;
|
||||
asdl_seq_SET(body, i, value);
|
||||
}
|
||||
Py_XDECREF(tmp);
|
||||
tmp = NULL;
|
||||
} else {
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from TryFinally");
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"orelse\" missing from Try");
|
||||
return 1;
|
||||
}
|
||||
if (PyObject_HasAttrString(obj, "finalbody")) {
|
||||
|
@ -4472,7 +4403,7 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
tmp = PyObject_GetAttrString(obj, "finalbody");
|
||||
if (tmp == NULL) goto failed;
|
||||
if (!PyList_Check(tmp)) {
|
||||
PyErr_Format(PyExc_TypeError, "TryFinally field \"finalbody\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
PyErr_Format(PyExc_TypeError, "Try field \"finalbody\" must be a list, not a %.200s", tmp->ob_type->tp_name);
|
||||
goto failed;
|
||||
}
|
||||
len = PyList_GET_SIZE(tmp);
|
||||
|
@ -4487,10 +4418,11 @@ obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
|
|||
Py_XDECREF(tmp);
|
||||
tmp = NULL;
|
||||
} else {
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"finalbody\" missing from TryFinally");
|
||||
PyErr_SetString(PyExc_TypeError, "required field \"finalbody\" missing from Try");
|
||||
return 1;
|
||||
}
|
||||
*out = TryFinally(body, finalbody, lineno, col_offset, arena);
|
||||
*out = Try(body, handlers, orelse, finalbody, lineno,
|
||||
col_offset, arena);
|
||||
if (*out == NULL) goto failed;
|
||||
return 0;
|
||||
}
|
||||
|
@ -6853,10 +6785,8 @@ PyInit__ast(void)
|
|||
NULL;
|
||||
if (PyDict_SetItemString(d, "Raise", (PyObject*)Raise_type) < 0) return
|
||||
NULL;
|
||||
if (PyDict_SetItemString(d, "TryExcept", (PyObject*)TryExcept_type) <
|
||||
0) return NULL;
|
||||
if (PyDict_SetItemString(d, "TryFinally", (PyObject*)TryFinally_type) <
|
||||
0) return NULL;
|
||||
if (PyDict_SetItemString(d, "Try", (PyObject*)Try_type) < 0) return
|
||||
NULL;
|
||||
if (PyDict_SetItemString(d, "Assert", (PyObject*)Assert_type) < 0)
|
||||
return NULL;
|
||||
if (PyDict_SetItemString(d, "Import", (PyObject*)Import_type) < 0)
|
||||
|
|
22
Python/ast.c
22
Python/ast.c
|
@ -2893,7 +2893,7 @@ ast_for_try_stmt(struct compiling *c, const node *n)
|
|||
{
|
||||
const int nch = NCH(n);
|
||||
int n_except = (nch - 3)/3;
|
||||
asdl_seq *body, *orelse = NULL, *finally = NULL;
|
||||
asdl_seq *body, *handlers = NULL, *orelse = NULL, *finally = NULL;
|
||||
|
||||
REQ(n, try_stmt);
|
||||
|
||||
|
@ -2934,9 +2934,8 @@ ast_for_try_stmt(struct compiling *c, const node *n)
|
|||
|
||||
if (n_except > 0) {
|
||||
int i;
|
||||
stmt_ty except_st;
|
||||
/* process except statements to create a try ... except */
|
||||
asdl_seq *handlers = asdl_seq_new(n_except, c->c_arena);
|
||||
handlers = asdl_seq_new(n_except, c->c_arena);
|
||||
if (handlers == NULL)
|
||||
return NULL;
|
||||
|
||||
|
@ -2947,23 +2946,10 @@ ast_for_try_stmt(struct compiling *c, const node *n)
|
|||
return NULL;
|
||||
asdl_seq_SET(handlers, i, e);
|
||||
}
|
||||
|
||||
except_st = TryExcept(body, handlers, orelse, LINENO(n),
|
||||
n->n_col_offset, c->c_arena);
|
||||
if (!finally)
|
||||
return except_st;
|
||||
|
||||
/* if a 'finally' is present too, we nest the TryExcept within a
|
||||
TryFinally to emulate try ... except ... finally */
|
||||
body = asdl_seq_new(1, c->c_arena);
|
||||
if (body == NULL)
|
||||
return NULL;
|
||||
asdl_seq_SET(body, 0, except_st);
|
||||
}
|
||||
|
||||
/* must be a try ... finally (except clauses are in body, if any exist) */
|
||||
assert(finally != NULL);
|
||||
return TryFinally(body, finally, LINENO(n), n->n_col_offset, c->c_arena);
|
||||
assert(finally != NULL || asdl_seq_LEN(handlers));
|
||||
return Try(body, handlers, orelse, finally, LINENO(n), n->n_col_offset, c->c_arena);
|
||||
}
|
||||
|
||||
/* with_item: test ['as' expr] */
|
||||
|
|
|
@ -185,6 +185,7 @@ static int compiler_call_helper(struct compiler *c, int n,
|
|||
asdl_seq *keywords,
|
||||
expr_ty starargs,
|
||||
expr_ty kwargs);
|
||||
static int compiler_try_except(struct compiler *, stmt_ty);
|
||||
|
||||
static PyCodeObject *assemble(struct compiler *, int addNone);
|
||||
static PyObject *__doc__;
|
||||
|
@ -1898,7 +1899,13 @@ compiler_try_finally(struct compiler *c, stmt_ty s)
|
|||
compiler_use_next_block(c, body);
|
||||
if (!compiler_push_fblock(c, FINALLY_TRY, body))
|
||||
return 0;
|
||||
VISIT_SEQ(c, stmt, s->v.TryFinally.body);
|
||||
if (s->v.Try.handlers && asdl_seq_LEN(s->v.Try.handlers)) {
|
||||
if (!compiler_try_except(c, s))
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
VISIT_SEQ(c, stmt, s->v.Try.body);
|
||||
}
|
||||
ADDOP(c, POP_BLOCK);
|
||||
compiler_pop_fblock(c, FINALLY_TRY, body);
|
||||
|
||||
|
@ -1906,7 +1913,7 @@ compiler_try_finally(struct compiler *c, stmt_ty s)
|
|||
compiler_use_next_block(c, end);
|
||||
if (!compiler_push_fblock(c, FINALLY_END, end))
|
||||
return 0;
|
||||
VISIT_SEQ(c, stmt, s->v.TryFinally.finalbody);
|
||||
VISIT_SEQ(c, stmt, s->v.Try.finalbody);
|
||||
ADDOP(c, END_FINALLY);
|
||||
compiler_pop_fblock(c, FINALLY_END, end);
|
||||
|
||||
|
@ -1960,15 +1967,15 @@ compiler_try_except(struct compiler *c, stmt_ty s)
|
|||
compiler_use_next_block(c, body);
|
||||
if (!compiler_push_fblock(c, EXCEPT, body))
|
||||
return 0;
|
||||
VISIT_SEQ(c, stmt, s->v.TryExcept.body);
|
||||
VISIT_SEQ(c, stmt, s->v.Try.body);
|
||||
ADDOP(c, POP_BLOCK);
|
||||
compiler_pop_fblock(c, EXCEPT, body);
|
||||
ADDOP_JREL(c, JUMP_FORWARD, orelse);
|
||||
n = asdl_seq_LEN(s->v.TryExcept.handlers);
|
||||
n = asdl_seq_LEN(s->v.Try.handlers);
|
||||
compiler_use_next_block(c, except);
|
||||
for (i = 0; i < n; i++) {
|
||||
excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET(
|
||||
s->v.TryExcept.handlers, i);
|
||||
s->v.Try.handlers, i);
|
||||
if (!handler->v.ExceptHandler.type && i < n-1)
|
||||
return compiler_error(c, "default 'except:' must be last");
|
||||
c->u->u_lineno_set = 0;
|
||||
|
@ -2055,11 +2062,20 @@ compiler_try_except(struct compiler *c, stmt_ty s)
|
|||
}
|
||||
ADDOP(c, END_FINALLY);
|
||||
compiler_use_next_block(c, orelse);
|
||||
VISIT_SEQ(c, stmt, s->v.TryExcept.orelse);
|
||||
VISIT_SEQ(c, stmt, s->v.Try.orelse);
|
||||
compiler_use_next_block(c, end);
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int
|
||||
compiler_try(struct compiler *c, stmt_ty s) {
|
||||
if (s->v.Try.finalbody && asdl_seq_LEN(s->v.Try.finalbody))
|
||||
return compiler_try_finally(c, s);
|
||||
else
|
||||
return compiler_try_except(c, s);
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
compiler_import_as(struct compiler *c, identifier name, identifier asname)
|
||||
{
|
||||
|
@ -2307,10 +2323,8 @@ compiler_visit_stmt(struct compiler *c, stmt_ty s)
|
|||
}
|
||||
ADDOP_I(c, RAISE_VARARGS, n);
|
||||
break;
|
||||
case TryExcept_kind:
|
||||
return compiler_try_except(c, s);
|
||||
case TryFinally_kind:
|
||||
return compiler_try_finally(c, s);
|
||||
case Try_kind:
|
||||
return compiler_try(c, s);
|
||||
case Assert_kind:
|
||||
return compiler_assert(c, s);
|
||||
case Import_kind:
|
||||
|
|
|
@ -1211,14 +1211,11 @@ symtable_visit_stmt(struct symtable *st, stmt_ty s)
|
|||
}
|
||||
}
|
||||
break;
|
||||
case TryExcept_kind:
|
||||
VISIT_SEQ(st, stmt, s->v.TryExcept.body);
|
||||
VISIT_SEQ(st, stmt, s->v.TryExcept.orelse);
|
||||
VISIT_SEQ(st, excepthandler, s->v.TryExcept.handlers);
|
||||
break;
|
||||
case TryFinally_kind:
|
||||
VISIT_SEQ(st, stmt, s->v.TryFinally.body);
|
||||
VISIT_SEQ(st, stmt, s->v.TryFinally.finalbody);
|
||||
case Try_kind:
|
||||
VISIT_SEQ(st, stmt, s->v.Try.body);
|
||||
VISIT_SEQ(st, stmt, s->v.Try.orelse);
|
||||
VISIT_SEQ(st, excepthandler, s->v.Try.handlers);
|
||||
VISIT_SEQ(st, stmt, s->v.Try.finalbody);
|
||||
break;
|
||||
case Assert_kind:
|
||||
VISIT(st, expr, s->v.Assert.test);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue