]> granicus.if.org Git - python/commitdiff
Change a very minor inconsistency (that is purely cosmetic) in the AST
authorBrett Cannon <bcannon@gmail.com>
Sun, 11 Feb 2007 05:36:00 +0000 (05:36 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sun, 11 Feb 2007 05:36:00 +0000 (05:36 +0000)
definition.

Parser/Python.asdl

index 00de381c8dca21ca8a5ace9ec5b308906bc5642b..3aaa0f290b4cc59da02a7438eb6f2b22989c69ca 100644 (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(exprelts, expr_context ctx)
 
              -- col_offset is the byte offset in the utf8 string the parser uses
              attributes (int lineno, int col_offset)