diff options
author | Tim Hatch <tim@timhatch.com> | 2020-04-02 22:34:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 22:34:54 (GMT) |
commit | 3c3aa4516c70753de06bb142b6793d01330fcf0f (patch) | |
tree | cea6e6cc2cfc646d8ff84aff0c5bf596417e598c /Lib/lib2to3/tests/test_parser.py | |
parent | 45217af29c7f380089af17beb48a5ea0560bbb9d (diff) | |
download | cpython-3c3aa4516c70753de06bb142b6793d01330fcf0f.zip cpython-3c3aa4516c70753de06bb142b6793d01330fcf0f.tar.gz cpython-3c3aa4516c70753de06bb142b6793d01330fcf0f.tar.bz2 |
lib2to3: Support named assignment expressions (GH-12702)
There are two copies of the grammar -- the one used by Python itself as
Grammar/Grammar, and the one used by lib2to3 which has necessarily diverged at
Lib/lib2to3/Grammar.txt because it needs to support older syntax an we want it
to be reasonable stable to avoid requiring fixer rewrites.
This brings suport for syntax like `if x:= foo():` to match what the live
Python grammar does.
This should've been added at the time of the walrus operator itself, but lib2to3 being
independent is often overlooked. So we do consider this a bugfix rather than enhancement.
Diffstat (limited to 'Lib/lib2to3/tests/test_parser.py')
-rw-r--r-- | Lib/lib2to3/tests/test_parser.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/lib2to3/tests/test_parser.py b/Lib/lib2to3/tests/test_parser.py index a0c31e8..ba2bb78 100644 --- a/Lib/lib2to3/tests/test_parser.py +++ b/Lib/lib2to3/tests/test_parser.py @@ -629,6 +629,21 @@ class TestLiterals(GrammarTest): self.validate(s) +class TestNamedAssignments(GrammarTest): + + def test_named_assignment_if(self): + driver.parse_string("if f := x(): pass\n") + + def test_named_assignment_while(self): + driver.parse_string("while f := x(): pass\n") + + def test_named_assignment_generator(self): + driver.parse_string("any((lastNum := num) == 1 for num in [1, 2, 3])\n") + + def test_named_assignment_listcomp(self): + driver.parse_string("[(lastNum := num) == 1 for num in [1, 2, 3]]\n") + + class TestPickleableException(unittest.TestCase): def test_ParseError(self): err = ParseError('msg', 2, None, (1, 'context')) |