projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d2aa77
)
fix error message
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 20 Aug 2009 19:56:44 +0000
(21:56 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 20 Aug 2009 19:56:44 +0000
(21:56 +0200)
Cython/Compiler/ExprNodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ExprNodes.py
b/Cython/Compiler/ExprNodes.py
index 4f2f29818059682aa13e79adc08e3151ab8803f9..bd35c026bd7edcff68c6405d33b07b2e227ac93d 100644
(file)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-5799,7
+5799,7
@@
static INLINE void __Pyx_RaiseNoneNotIterableError(void);
""",
impl = '''
static INLINE void __Pyx_RaiseNoneNotIterableError(void) {
- PyErr_SetString(PyExc_TypeError, "'NoneType' object is iterable");
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is
not
iterable");
}
''')