Patch #522279: transformer.py nodes shadows global.

This commit is contained in:
Martin v. Löwis 2002-02-28 17:48:48 +00:00
parent 1c63f6e489
commit 51e234aa68
1 changed files with 3 additions and 3 deletions

View File

@ -292,10 +292,10 @@ class Transformer:
n.lineno = exprNode.lineno
return n
if nodelist[1][0] == token.EQUAL:
nodes = []
nodesl = []
for i in range(0, len(nodelist) - 2, 2):
nodes.append(self.com_assign(nodelist[i], OP_ASSIGN))
n = Assign(nodes, exprNode)
nodesl.append(self.com_assign(nodelist[i], OP_ASSIGN))
n = Assign(nodesl, exprNode)
n.lineno = nodelist[1][2]
else:
lval = self.com_augassign(nodelist[0])