diff --git a/Parser/Python.asdl b/Parser/Python.asdl index 54f5893660a..9a9b933143e 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -11,7 +11,7 @@ module Python version "$Revision$" stmt = FunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list) - | ClassDef(identifier name, expr* bases, stmt* body, expr *decorator_list) + | ClassDef(identifier name, expr* bases, stmt* body, expr* decorator_list) | Return(expr? value) | Delete(expr* targets)