[Python-checkins] r52521 - python/trunk/Lib/compiler/pycodegen.py

georg.brandl python-checkins at python.org
Sun Oct 29 10:01:01 CET 2006


Author: georg.brandl
Date: Sun Oct 29 10:01:01 2006
New Revision: 52521

Modified:
   python/trunk/Lib/compiler/pycodegen.py
Log:
Remove trailing comma.



Modified: python/trunk/Lib/compiler/pycodegen.py
==============================================================================
--- python/trunk/Lib/compiler/pycodegen.py	(original)
+++ python/trunk/Lib/compiler/pycodegen.py	Sun Oct 29 10:01:01 2006
@@ -591,7 +591,7 @@
 
         self._implicitNameOp('LOAD', tmpname)
         self.visit(node.expr)
-        self.emit('LIST_APPEND',)
+        self.emit('LIST_APPEND')
 
         for start, cont, anchor in stack:
             if cont:


More information about the Python-checkins mailing list