From fe9c71bcd39725ba9149f5c011728b88c99f3a30 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 29 Oct 2006 09:01:01 +0000 Subject: Remove trailing comma. --- Lib/compiler/pycodegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 0e226fd..8cf7d77 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -591,7 +591,7 @@ class CodeGenerator: self._implicitNameOp('LOAD', tmpname) self.visit(node.expr) - self.emit('LIST_APPEND',) + self.emit('LIST_APPEND') for start, cont, anchor in stack: if cont: -- cgit v0.12