Michael Williamson added the comment:
> Using 'expression' (or 'expr' in the ast doc) for what should be 'exceptions:
> identifier' or paranthesized tuple of identifiers;, is also too broad.
> However, that must be enforced in the compiler rather than t
New submission from Michael Williamson:
In the docs for the try statement [1], part of the grammar is:
try1_stmt ::= "try" ":" suite
("except" [expression ["as" target]] ":" suite)+
["else" ":"
New submission from Michael Williamson:
The Python docs for the operator module include an example using map and
setitem to "Build a dictionary that maps the ordinals from 0 to 255 to their
character equivalents.":
d = {}
keys = range(256)
vals = map(chr, key