File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ cdef extern from "<map>" namespace "std":
1515 iterator operator-- () nogil
1616 bint operator== (iterator) nogil
1717 bint operator!= (iterator) nogil
18- multimap() nogil except +
18+ multimap() except + nogil
1919 # noinspection PyUnresolvedReferences
2020 U& operator[](T& ) nogil
2121 # noinspection PyUnresolvedReferences
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ cdef extern from "<string>" namespace "std":
1212 size_t npos = - 1
1313
1414 cdef cppclass wstring:
15- wstring() nogil except +
16- wstring(wchar_t * ) nogil except +
17- wstring(wchar_t * , size_t) nogil except +
18- wstring(string& ) nogil except +
15+ wstring() except + nogil
16+ wstring(wchar_t * ) except + nogil
17+ wstring(wchar_t * , size_t) except + nogil
18+ wstring(string& ) except + nogil
1919 # as a string formed by a repetition of character c, n times.
20- wstring(size_t, char ) nogil except +
20+ wstring(size_t, char ) except + nogil
2121
2222 const_wchar_t* c_str() nogil
2323 const_wchar_t* data() nogil
You can’t perform that action at this time.
0 commit comments