diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-22 20:02:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-22 20:02:39 (GMT) |
commit | 60995fbdc51ee81d85e953f7bda7087cf93b0e17 (patch) | |
tree | a94b2c87eefe96ccaa7734439270b32b53f1547e /Parser | |
parent | 0820e93251aefee4ac89a0eb7275db9a0bca2a85 (diff) | |
download | cpython-60995fbdc51ee81d85e953f7bda7087cf93b0e17.zip cpython-60995fbdc51ee81d85e953f7bda7087cf93b0e17.tar.gz cpython-60995fbdc51ee81d85e953f7bda7087cf93b0e17.tar.bz2 |
Merged revisions 82160 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82160 | benjamin.peterson | 2010-06-22 14:45:51 -0500 (Tue, 22 Jun 2010) | 1 line
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 a535f65..9407b2f 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -17,7 +17,7 @@ module Python version "$Revision$" expr? starargs, expr? kwargs, stmt* body, - expr *decorator_list) + expr* decorator_list) | Return(expr? value) | Delete(expr* targets) |