From 1fbe3ab5de7fd34c8288c495960361b009a7e8b9 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 11 Feb 2007 05:36:00 +0000 Subject: [PATCH] Change a very minor inconsistency (that is purely cosmetic) in the AST definition. --- Parser/Python.asdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser/Python.asdl b/Parser/Python.asdl index 00de381c8dc..3aaa0f290b4 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -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)