summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-10-28 17:22:48 +0200
committerStefan Behnel <stefan_ml@behnel.de>2017-10-28 17:22:48 +0200
commit84e47269c69ea64dba3f400818c577efd942657a (patch)
tree31a14231282165559b55696bb44d48e2608e111d
parent12eaff0561051ff3596520f219e257010eb61739 (diff)
downloadcython-84e47269c69ea64dba3f400818c577efd942657a.tar.gz
Re-add lost comment.
-rw-r--r--Cython/Compiler/ExprNodes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py
index 50e1f6a6c..da058b4f0 100644
--- a/Cython/Compiler/ExprNodes.py
+++ b/Cython/Compiler/ExprNodes.py
@@ -12257,6 +12257,7 @@ class PrimaryCmpNode(ExprNode, CmpNode):
if is_pythran_supported_type(type1) and is_pythran_supported_type(type2):
return PythranExpr(pythran_binop_type(self.operator, type1, type2))
+ # TODO: implement this for other types.
return py_object_type
def type_dependencies(self, env):