summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/transformer.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-09-17 19:33:48 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-09-17 19:33:48 (GMT)
commit2e4cc7e0d84747826d3d2546d1bccd9c40a455c2 (patch)
tree7c9bcbb7414b9d94aee0ec20520a026bfdba17f4 /Lib/compiler/transformer.py
parentc299fc16f2a8572780d2130ab9e55a6f22a93279 (diff)
downloadcpython-2e4cc7e0d84747826d3d2546d1bccd9c40a455c2.zip
cpython-2e4cc7e0d84747826d3d2546d1bccd9c40a455c2.tar.gz
cpython-2e4cc7e0d84747826d3d2546d1bccd9c40a455c2.tar.bz2
Last set of change to get regression tests to pass
Remove the only test in the syntax module. It ends up that the transformer must handle this error case. In the transformer, check for a list compression in com_assign_list() by looking for a list_for node where a comma is expected. In pycodegen.compile() re-raise the SyntaxError rather than catching it and exiting
Diffstat (limited to 'Lib/compiler/transformer.py')
-rw-r--r--Lib/compiler/transformer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index 6e82b10..3607af1 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -943,6 +943,10 @@ class Transformer:
def com_assign_list(self, node, assigning):
assigns = []
for i in range(1, len(node), 2):
+ if i + 1 < len(node):
+ if node[i + 1][0] == symbol.list_for:
+ raise SyntaxError, "can't assign to list comprehension"
+ assert node[i + 1][0] == token.COMMA, node[i + 1]
assigns.append(self.com_assign(node[i], assigning))
return AssList(assigns)