summaryrefslogtreecommitdiffstats
path: root/Include/node.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-09-17 03:27:02 (GMT)
committerGuido van Rossum <guido@python.org>2002-09-17 03:27:02 (GMT)
commite5de77800e905a4bc90f7568eb106aa9e276b590 (patch)
treed23c85fddf5b1f5a88a8b9ae68a3fbc0301d3618 /Include/node.h
parent73d66925d90facf9a4a831d8ea5b1ffe6b4653c3 (diff)
downloadcpython-e5de77800e905a4bc90f7568eb106aa9e276b590.zip
cpython-e5de77800e905a4bc90f7568eb106aa9e276b590.tar.gz
cpython-e5de77800e905a4bc90f7568eb106aa9e276b590.tar.bz2
Back out the previous change. It doesn't save any space on 64-bit
platforms.
Diffstat (limited to 'Include/node.h')
-rw-r--r--Include/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/node.h b/Include/node.h
index c909ec5..8f5ef23 100644
--- a/Include/node.h
+++ b/Include/node.h
@@ -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);