Commit 8b2a1153 authored by Robert Bradshaw's avatar Robert Bradshaw

Minor fix in indexing test

parent c6d54d9a
......@@ -1295,7 +1295,7 @@ class IndexNode(ExprNode):
if self.original_index_type.signed:
return ", 0"
else:
return ", sizeof(Py_ssize_t) >= sizeof(%s)" % self.original_index_type.declaration_code("")
return ", sizeof(Py_ssize_t) <= sizeof(%s)" % self.original_index_type.declaration_code("")
else:
return ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment