remove duplicated code
authorStefan Behnel <stefan_ml@behnel.de>
Sat, 23 Feb 2013 09:47:52 +0000 (10:47 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Sat, 23 Feb 2013 09:47:52 +0000 (10:47 +0100)
Cython/Compiler/ExprNodes.py

index 278b91f..a2eb14c 100755 (executable)
@@ -274,8 +274,6 @@ class ExprNode(Node):
             return typecast(type, py_object_type, self.result())
         return typecast(type, self.ctype(), self.result())
 
-        return typecast(type, self.ctype(), self.result())
-
     def py_result(self):
         #  Return the result code cast to PyObject *.
         return self.result_as(py_object_type)