From: Stefan Behnel Date: Fri, 16 May 2008 16:40:25 +0000 (+0200) Subject: struct fields were generated in the wrong order X-Git-Tag: 0.9.8rc1~11^2~10^2~15^2~47 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ec304a9b559684ddeaf0be6954828d3bf6aecc06;p=cython.git struct fields were generated in the wrong order --- diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 69eb6807..9a22f3d2 100644 --- 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_identifier, - entry.is_interned + entry.is_interned, + entry.is_identifier )) code.putln( "{0, 0, 0, 0, 0}")