Commit 9d5cb520 authored by Stefan Behnel's avatar Stefan Behnel

fix C compiler warning about unused expression result in test

parent 1f56cb7d
...@@ -2161,12 +2161,12 @@ def test_noneslice_index(double[:] m): ...@@ -2161,12 +2161,12 @@ def test_noneslice_index(double[:] m):
""" """
with cython.nonecheck(True): with cython.nonecheck(True):
try: try:
m[10] a = m[10]
except Exception, e: except Exception, e:
print e.args[0] print e.args[0]
try: try:
m[:] b = m[:]
except Exception, e: except Exception, e:
print e.args[0] print e.args[0]
......
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