Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c8909dd

Browse files
committed
break out switch at correct place
1 parent 205ad61 commit c8909dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ast.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,8 @@ PyAST_FromNode(const node *n, PyCompilerFlags *flags, const char *filename,
822822
}
823823

824824
res = Interactive(stmts, arena);
825-
break;
826825
}
826+
break;
827827
default:
828828
PyErr_Format(PyExc_SystemError,
829829
"invalid node %d for PyAST_FromNode", TYPE(n));

0 commit comments

Comments
 (0)