diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-22 19:45:51 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-22 19:45:51 (GMT) |
commit | c009735b509c0b259359d923e5514b66e0636380 (patch) | |
tree | 4378538b53d48cd7a7c71829c549042d0f983f8e /Parser | |
parent | b91338960e1abafbf9328a700227b0e3f59a2226 (diff) | |
download | cpython-c009735b509c0b259359d923e5514b66e0636380.zip cpython-c009735b509c0b259359d923e5514b66e0636380.tar.gz cpython-c009735b509c0b259359d923e5514b66e0636380.tar.bz2 |
spacing nit; this isn't C
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/Python.asdl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl index 54f5893..9a9b933 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) |