summaryrefslogtreecommitdiffstats
path: root/Parser/Python.asdl
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-02-11 05:36:00 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-02-11 05:36:00 (GMT)
commit1fbe3ab5de7fd34c8288c495960361b009a7e8b9 (patch)
treecd00f7a4a32be39ba05e4837e6f7fe8829d7f57c /Parser/Python.asdl
parent441268f86707979353625573d0fdf252a09774ec (diff)
downloadcpython-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.asdl2
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)