diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 21:56:17 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 21:56:17 (GMT) |
commit | a70f60acf3283a0f4684a5d22bc710004f2f1ed3 (patch) | |
tree | 57f32165f01a48392b9813966ed6f88f03a7a493 /Lib/lib2to3 | |
parent | ce9cc4910481ec96a4024ffe36475e2c9feebfa1 (diff) | |
download | cpython-a70f60acf3283a0f4684a5d22bc710004f2f1ed3.zip cpython-a70f60acf3283a0f4684a5d22bc710004f2f1ed3.tar.gz cpython-a70f60acf3283a0f4684a5d22bc710004f2f1ed3.tar.bz2 |
Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r-- | Lib/lib2to3/pgen2/grammar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib2to3/pgen2/grammar.py b/Lib/lib2to3/pgen2/grammar.py index 0483424..1aa5c43 100644 --- a/Lib/lib2to3/pgen2/grammar.py +++ b/Lib/lib2to3/pgen2/grammar.py @@ -20,7 +20,7 @@ from . import token, tokenize class Grammar(object): - """Pgen parsing tables tables conversion class. + """Pgen parsing tables conversion class. Once initialized, this class supplies the grammar tables for the parsing engine implemented by parse.py. The parsing engine @@ -45,7 +45,7 @@ class Grammar(object): these two are each other's inverse. states -- a list of DFAs, where each DFA is a list of - states, each state is is a list of arcs, and each + states, each state is a list of arcs, and each arc is a (i, j) pair where i is a label and j is a state number. The DFA number is the index into this list. (This name is slightly confusing.) |