diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-02-11 05:36:00 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-02-11 05:36:00 (GMT) |
commit | 1fbe3ab5de7fd34c8288c495960361b009a7e8b9 (patch) | |
tree | cd00f7a4a32be39ba05e4837e6f7fe8829d7f57c /Parser/Python.asdl | |
parent | 441268f86707979353625573d0fdf252a09774ec (diff) | |
download | cpython-1fbe3ab5de7fd34c8288c495960361b009a7e8b9.zip cpython-1fbe3ab5de7fd34c8288c495960361b009a7e8b9.tar.gz cpython-1fbe3ab5de7fd34c8288c495960361b009a7e8b9.tar.bz2 |
Change a very minor inconsistency (that is purely cosmetic) in the AST
definition.
Diffstat (limited to 'Parser/Python.asdl')
-rw-r--r-- | Parser/Python.asdl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl index 00de381..3aaa0f2 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) |