projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4d5dc4
)
fix for windows build
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 9 May 2008 05:30:59 +0000
(07:30 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 9 May 2008 05:30:59 +0000
(07:30 +0200)
Cython/Compiler/ExprNodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ExprNodes.py
b/Cython/Compiler/ExprNodes.py
index 25140ecbf9530d1109c7a4a058c4d4db4189ee14..ec57a0e2d86f6080a37d9de543c4c380854900a6 100644
(file)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-4124,7
+4124,7
@@
static void __Pyx_CppExn2PyErr() {
append_utility_code = [
"""
-static
inline
PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
+static
INLINE
PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
if (likely(PyList_CheckExact(L))) {
if (PyList_Append(L, x) < 0) return NULL;
Py_INCREF(Py_None);