diff options
Diffstat (limited to 'Parser/Python.asdl')
-rw-r--r-- | Parser/Python.asdl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl index 3aaa0f290b..250e9ac7e2 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -10,8 +10,8 @@ module Python version "$Revision$" | Suite(stmt* body) stmt = FunctionDef(identifier name, arguments args, - stmt* body, expr* decorators) - | ClassDef(identifier name, expr* bases, stmt* body) + stmt* body, expr* decorator_list) + | ClassDef(identifier name, expr* bases, stmt* body, expr *decorator_list) | Return(expr? value) | Delete(expr* targets) |