Change a very minor inconsistency (that is purely cosmetic) in the AST

definition.
This commit is contained in:
Brett Cannon 2007-02-11 05:36:00 +00:00
parent 441268f867
commit 1fbe3ab5de
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ module Python version "$Revision$"
| Subscript(expr value, slice slice, expr_context ctx)
| Name(identifier id, expr_context ctx)
| List(expr* elts, expr_context ctx)
| Tuple(expr *elts, expr_context ctx)
| Tuple(expr* elts, expr_context ctx)
-- col_offset is the byte offset in the utf8 string the parser uses
attributes (int lineno, int col_offset)