summaryrefslogtreecommitdiffstats
path: root/Lib/compiler
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2004-07-12 13:15:56 (GMT)
committerMichael W. Hudson <mwh@python.net>2004-07-12 13:15:56 (GMT)
commit3f06189332c585a4578281e8325fdfb140b12f9e (patch)
treeddbef24967dde87f3c5b70b7339d351340200a98 /Lib/compiler
parentca1a775ab94ce589a6cbfc5c35448bfac385b045 (diff)
downloadcpython-3f06189332c585a4578281e8325fdfb140b12f9e.zip
cpython-3f06189332c585a4578281e8325fdfb140b12f9e.tar.gz
cpython-3f06189332c585a4578281e8325fdfb140b12f9e.tar.bz2
this is patch
[ 988698 ] compiler.transformer fix for (a, b) = 1, 2 fixing bug [ 988613 ] compiler.transformer and tuple unpacking
Diffstat (limited to 'Lib/compiler')
-rw-r--r--Lib/compiler/transformer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index 6832cf1..aa5a28b 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -929,7 +929,7 @@ class Transformer:
# loop to avoid trivial recursion
while 1:
t = node[0]
- if t == symbol.exprlist or t == symbol.testlist:
+ if t == symbol.exprlist or t == symbol.testlist or t == symbol.testlist_gexp:
if len(node) > 2:
return self.com_assign_tuple(node, assigning)
node = node[1]