Skip to content

Commit

Permalink
Issue python#28100: Refactor error messages, patch by Ivan Levkivskyi
Browse files Browse the repository at this point in the history
  • Loading branch information
tiran committed Sep 23, 2016
1 parent 6f3f3e5 commit 517507c
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions Python/symtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -1282,15 +1282,13 @@ symtable_visit_stmt(struct symtable *st, stmt_ty s)
VISIT_QUIT(st, 0);
if (cur & (DEF_LOCAL | USE | DEF_ANNOT)) {
char* msg;
if (cur & DEF_ANNOT) {
if (cur & USE) {
msg = GLOBAL_AFTER_USE;
} else if (cur & DEF_ANNOT) {
msg = GLOBAL_ANNOT;
}
if (cur & DEF_LOCAL) {
} else { /* DEF_LOCAL */
msg = GLOBAL_AFTER_ASSIGN;
}
else {
msg = GLOBAL_AFTER_USE;
}
PyErr_Format(PyExc_SyntaxError,
msg, name);
PyErr_SyntaxLocationObject(st->st_filename,
Expand All @@ -1315,15 +1313,13 @@ symtable_visit_stmt(struct symtable *st, stmt_ty s)
VISIT_QUIT(st, 0);
if (cur & (DEF_LOCAL | USE | DEF_ANNOT)) {
char* msg;
if (cur & DEF_ANNOT) {
if (cur & USE) {
msg = NONLOCAL_AFTER_USE;
} else if (cur & DEF_ANNOT) {
msg = NONLOCAL_ANNOT;
}
if (cur & DEF_LOCAL) {
} else { /* DEF_LOCAL */
msg = NONLOCAL_AFTER_ASSIGN;
}
else {
msg = NONLOCAL_AFTER_USE;
}
PyErr_Format(PyExc_SyntaxError, msg, name);
PyErr_SyntaxLocationObject(st->st_filename,
s->lineno,
Expand Down

0 comments on commit 517507c

Please sign in to comment.