summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-10-29 09:01:01 (GMT)
committerGeorg Brandl <georg@python.org>2006-10-29 09:01:01 (GMT)
commitfe9c71bcd39725ba9149f5c011728b88c99f3a30 (patch)
treed1b3e9b35fae04fee1dd7deca343a4545cf1f863 /Lib
parent5addf7007818bd05f5a1c26f8c71b5ee839a7659 (diff)
downloadcpython-fe9c71bcd39725ba9149f5c011728b88c99f3a30.zip
cpython-fe9c71bcd39725ba9149f5c011728b88c99f3a30.tar.gz
cpython-fe9c71bcd39725ba9149f5c011728b88c99f3a30.tar.bz2
Remove trailing comma.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/compiler/pycodegen.py2
1 files changed, 1 insertions, 1 deletions
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: