summaryrefslogtreecommitdiff
path: root/Python/ast.c
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-05-18 23:11:24 +0000
committerCollin Winter <collinw@gmail.com>2007-05-18 23:11:24 +0000
commit6290305e6722c20e17d3c73bd6a30c6448bead83 (patch)
treefc3cc9d13179cb407116ebac000400c9c294140a /Python/ast.c
parent6eb7bede72f044b0b6a73551c04281defc7fc489 (diff)
downloadcpython-git-6290305e6722c20e17d3c73bd6a30c6448bead83.tar.gz
Backport PEP 3110's new 'except' syntax to 2.6.
Diffstat (limited to 'Python/ast.c')
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index ace4950402..27c3efaac8 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -2765,7 +2765,7 @@ ast_for_for_stmt(struct compiling *c, const node *n)
static excepthandler_ty
ast_for_except_clause(struct compiling *c, const node *exc, node *body)
{
- /* except_clause: 'except' [test [',' test]] */
+ /* except_clause: 'except' [test [(',' | 'as') test]] */
REQ(exc, except_clause);
REQ(body, suite);