Revise handling of tuple arguments so that the variables names match
those used by compile.c. (test_grammar now depends on the names)
diff --git a/Lib/compiler/pyassem.py b/Lib/compiler/pyassem.py
index 447a8e7..15e91f4 100644
--- a/Lib/compiler/pyassem.py
+++ b/Lib/compiler/pyassem.py
@@ -495,7 +495,7 @@
def __repr__(self):
return "TupleArg(%s, %s)" % (self.count, self.names)
def getName(self):
- return ".nested%d" % self.count
+ return ".%d" % self.count
def getArgCount(args):
argcount = len(args)