diff options
| author | Jakub Stasiak <jakub@stasiak.at> | 2017-10-05 07:10:09 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2017-10-05 07:10:09 (GMT) |
| commit | af810b35b494ef1d255d4bf340b92a9dad446995 (patch) | |
| tree | 78df02ecf9d934a174aa2ad1202d583b29faeba7 /Lib/lib2to3/fixer_util.py | |
| parent | a8ed11742b4c2115597977ce04fa8e043d9e0792 (diff) | |
| download | cpython-af810b35b494ef1d255d4bf340b92a9dad446995.zip cpython-af810b35b494ef1d255d4bf340b92a9dad446995.tar.gz cpython-af810b35b494ef1d255d4bf340b92a9dad446995.tar.bz2 | |
closes bpo-27494: Fix 2to3 handling of trailing comma after a generator expression (#3771)
Diffstat (limited to 'Lib/lib2to3/fixer_util.py')
| -rw-r--r-- | Lib/lib2to3/fixer_util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/lib2to3/fixer_util.py b/Lib/lib2to3/fixer_util.py index babe6cb..2f9b1c2 100644 --- a/Lib/lib2to3/fixer_util.py +++ b/Lib/lib2to3/fixer_util.py @@ -101,8 +101,8 @@ def ListComp(xp, fp, it, test=None): test.prefix = " " if_leaf = Leaf(token.NAME, "if") if_leaf.prefix = " " - inner_args.append(Node(syms.comp_if, [if_leaf, test])) - inner = Node(syms.listmaker, [xp, Node(syms.comp_for, inner_args)]) + inner_args.append(Node(syms.old_comp_if, [if_leaf, test])) + inner = Node(syms.listmaker, [xp, Node(syms.old_comp_for, inner_args)]) return Node(syms.atom, [Leaf(token.LBRACE, "["), inner, @@ -208,7 +208,7 @@ def attr_chain(obj, attr): next = getattr(next, attr) p0 = """for_stmt< 'for' any 'in' node=any ':' any* > - | comp_for< 'for' any 'in' node=any any* > + | old_comp_for< 'for' any 'in' node=any any* > """ p1 = """ power< |
