summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-01-10 18:51:35 (GMT)
committerGuido van Rossum <guido@python.org>2007-01-10 18:51:35 (GMT)
commit16be03e4a206c24b00dc1d2d3c740dffbbfc4ac9 (patch)
tree459a125a265abb16399baeea398ab116b7bf4f9b /Parser
parentb940e113bf90ff71b0ef57414ea2beea9d2a4bc0 (diff)
downloadcpython-16be03e4a206c24b00dc1d2d3c740dffbbfc4ac9.zip
cpython-16be03e4a206c24b00dc1d2d3c740dffbbfc4ac9.tar.gz
cpython-16be03e4a206c24b00dc1d2d3c740dffbbfc4ac9.tar.bz2
Some more changes related to the new except syntax and semantics,
by Collin Winter.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Python.asdl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl
index 2c3fa94..eb5a14e 100644
--- a/Parser/Python.asdl
+++ b/Parser/Python.asdl
@@ -97,7 +97,7 @@ module Python version "$Revision$"
-- TODO(jhylton): Figure out if there is a better way to handle
-- lineno and col_offset fields, particularly when
-- ast is exposed to Python.
- excepthandler = (expr? type, expr? name, stmt* body, int lineno,
+ excepthandler = (expr? type, identifier? name, stmt* body, int lineno,
int col_offset)
arguments = (arg* args, identifier? vararg, expr? varargannotation,