projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0e8ab0
)
fixed wrong signature of PyList_Insert()
author
Stefan Behnel
<scoder@users.berlios.de>
Wed, 19 Nov 2008 07:36:39 +0000
(08:36 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Wed, 19 Nov 2008 07:36:39 +0000
(08:36 +0100)
Cython/Compiler/Builtin.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Builtin.py
b/Cython/Compiler/Builtin.py
index 33c5206077e0db4a1688a151ae8cc57482a66091..10c7bbec58004a24a1f56dacf3b4235a58ff0368 100644
(file)
--- a/
Cython/Compiler/Builtin.py
+++ b/
Cython/Compiler/Builtin.py
@@
-100,7
+100,7
@@
builtin_types_table = [
("tuple", "PyTuple_Type", []),
("list", "PyList_Type", [("append", "OO", "i", "PyList_Append"),
- ("insert", "O
i
O", "i", "PyList_Insert"),
+ ("insert", "O
Z
O", "i", "PyList_Insert"),
("sort", "O", "i", "PyList_Sort"),
("reverse","O", "i", "PyList_Reverse")]),