projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ed8dd4
)
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 1922db255530e4a1bff3d82aa96c0886484c7d40..af94ed03337aca049fcc0b54e498996ceb1503aa 100644
(file)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-5750,7
+5750,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");
}
''')