Commit 81fe6792 authored by Stefan Behnel's avatar Stefan Behnel

fix error message

parent 0ed8dd4c
...@@ -5750,7 +5750,7 @@ static INLINE void __Pyx_RaiseNoneNotIterableError(void); ...@@ -5750,7 +5750,7 @@ static INLINE void __Pyx_RaiseNoneNotIterableError(void);
""", """,
impl = ''' impl = '''
static INLINE void __Pyx_RaiseNoneNotIterableError(void) { static INLINE void __Pyx_RaiseNoneNotIterableError(void) {
PyErr_SetString(PyExc_TypeError, "'NoneType' object is iterable"); PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable");
} }
''') ''')
......
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