diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-03-19 20:42:11 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-03-19 20:42:11 (GMT) |
commit | e241e29f3d0c4a2e4c7beee018ae409beb4239de (patch) | |
tree | 33916bded649f76b132bc93f6136d79ae3a9a915 /Lib/test/test_grammar.py | |
parent | 23b4227ec899bb0e3e6f41d58e354418999fae8c (diff) | |
download | cpython-e241e29f3d0c4a2e4c7beee018ae409beb4239de.zip cpython-e241e29f3d0c4a2e4c7beee018ae409beb4239de.tar.gz cpython-e241e29f3d0c4a2e4c7beee018ae409beb4239de.tar.bz2 |
Add test for a list comprehension that is nested in the left-hand part
of another list comp. This caused crashes reported as SF bugs 409230
and 407800.
Note that the new tests are in a function so that the name lookup code
isn't affected by how many *other* list comprehensions are in the same
scope.
Diffstat (limited to 'Lib/test/test_grammar.py')
-rw-r--r-- | Lib/test/test_grammar.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 75a55b9..04b1431 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -661,6 +661,11 @@ def test_in_func(l): print test_in_func(nums) +def test_nested_front(): + print [[y for y in [x, x + 1]] for x in [1,3,5]] + +test_nested_front() + check_syntax("[i, s for i in nums for s in strs]") check_syntax("[x if y]") |