]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Back out the previous change. It doesn't save any space on 64-bit
authorGuido van Rossum <guido@python.org>
Tue, 17 Sep 2002 03:27:02 +0000 (03:27 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 17 Sep 2002 03:27:02 +0000 (03:27 +0000)
platforms.

Include/node.h

index c909ec5a9fcfab011915941afb56da4138d0b106..8f5ef236aa8de6107556a67ef57a4fdf57f3494d 100644 (file)
@@ -8,11 +8,11 @@ extern "C" {
 #endif
 
 typedef struct _node {
+    short              n_type;
     char               *n_str;
-    struct _node       *n_child;
     int                        n_lineno;
     int                        n_nchildren;
-    short              n_type;
+    struct _node       *n_child;
 } node;
 
 PyAPI_FUNC(node *) PyNode_New(int type);