Commit bf4979e2 authored by Stefan Behnel's avatar Stefan Behnel

Make a helper function in a C++ test correctly propagate exceptions so that it...

Make a helper function in a C++ test correctly propagate exceptions so that it won't have to spit out compiler warnings.
parent 3a34c5fb
......@@ -15,7 +15,7 @@ py_set = set
py_xrange = xrange
py_unicode = unicode
cdef string add_strings(string a, string b):
cdef string add_strings(string a, string b) except *:
return a + b
def normalize(bytes b):
......
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