projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
016d387
)
struct fields were generated in the wrong order
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 16 May 2008 16:40:25 +0000
(18:40 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 16 May 2008 16:40:25 +0000
(18:40 +0200)
Cython/Compiler/ModuleNode.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ModuleNode.py
b/Cython/Compiler/ModuleNode.py
index 69eb6807071a5331666cd687bcc795f9d766624c..9a22f3d2ff0612f931a2f99d3da1a6c52f6a2a25 100644
(file)
--- a/
Cython/Compiler/ModuleNode.py
+++ b/
Cython/Compiler/ModuleNode.py
@@
-1396,8
+1396,8
@@
class ModuleNode(Nodes.Node, Nodes.BlockNode):
entry.cname,
entry.cname,
entry.type.is_unicode,
- entry.is_i
dentifier
,
- entry.is_i
nterned
+ entry.is_i
nterned
,
+ entry.is_i
dentifier
))
code.putln(
"{0, 0, 0, 0, 0}")