code simplification
authorStefan Behnel <scoder@users.berlios.de>
Sat, 6 Mar 2010 16:16:15 +0000 (17:16 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 6 Mar 2010 16:16:15 +0000 (17:16 +0100)
Cython/Compiler/Nodes.py

index c80b0c0f7d2b78c6e47d9f02eafb3124f5520668..dab0d0829eeed7ca40c018bedbf72d55ac8d8498 100644 (file)
@@ -2441,7 +2441,7 @@ class DefNode(FuncDefNode):
         # it looks funny to separate the init-to-0 from setting the
         # default value, but C89 needs this
         code.putln("PyObject* values[%d] = {%s};" % (
-            max_args, ','.join(['0']*max_args)))
+            max_args, ','.join('0'*max_args)))
         for i, default_value in default_args:
             code.putln('values[%d] = %s;' % (i, default_value))