From c8909ddd28dbd540aca15607bdb87747c8e5f18a Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 16 Jan 2012 17:44:12 -0500 Subject: break out switch at correct place --- Python/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ast.c b/Python/ast.c index ef161b6..55faf97 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)); -- cgit v0.12