remove debug statement
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 10 Oct 2008 08:39:11 +0000 (01:39 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 10 Oct 2008 08:39:11 +0000 (01:39 -0700)
Cython/Compiler/ExprNodes.py

index c5d3a51af6784969f2ff2ec1440ef9f3d41e5022..7f993eeb20eb105e28ed210ef9619098aa231efc 100644 (file)
@@ -2834,7 +2834,7 @@ class ListNode(SequenceNode):
                                 self.result(),
                                 i,
                                 arg.result()))
-        elif self.type.is_struct or 1:
+        elif self.type.is_struct:
             for arg, member in zip(self.args, self.type.scope.var_entries):
                 code.putln("%s.%s = %s;" % (
                         self.result(),