From: Benjamin Peterson Date: Mon, 16 Jan 2012 22:44:12 +0000 (-0500) Subject: break out switch at correct place X-Git-Tag: v3.3.0a1~371 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8909ddd28dbd540aca15607bdb87747c8e5f18a;p=thirdparty%2FPython%2Fcpython.git break out switch at correct place --- diff --git a/Python/ast.c b/Python/ast.c index ef161b6f258b..55faf97c4fcf 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -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));