summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-23 13:37:43 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-23 13:37:43 (GMT)
commitb4f066da499f09814c7361dee3c85ca9ff711efb (patch)
tree1c57f52c031b54abdf183fdb63d9466bbb51644a /Include
parentb0f3c82a3bfaef24a275d11d3eb1c88105cdc587 (diff)
downloadcpython-b4f066da499f09814c7361dee3c85ca9ff711efb.zip
cpython-b4f066da499f09814c7361dee3c85ca9ff711efb.tar.gz
cpython-b4f066da499f09814c7361dee3c85ca9ff711efb.tar.bz2
Include/node.h: make some fields short to save space during
parsing
Diffstat (limited to 'Include')
-rw-r--r--Include/node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/node.h b/Include/node.h
index 24019a6..a2a2212 100644
--- a/Include/node.h
+++ b/Include/node.h
@@ -31,10 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Parse tree node interface */
typedef struct _node {
- int n_type;
+ short n_type;
char *n_str;
- int n_lineno;
- int n_nchildren;
+ short n_lineno;
+ short n_nchildren;
struct _node *n_child;
} node;