break out switch at correct place

This commit is contained in:
Benjamin Peterson 2012-01-16 17:44:12 -05:00
parent 205ad61313
commit c8909ddd28
1 changed files with 1 additions and 1 deletions

View File

@ -822,8 +822,8 @@ PyAST_FromNode(const node *n, PyCompilerFlags *flags, const char *filename,
}
res = Interactive(stmts, arena);
break;
}
break;
default:
PyErr_Format(PyExc_SystemError,
"invalid node %d for PyAST_FromNode", TYPE(n));