mirror of
https://github.com/python/cpython.git
synced 2026-02-13 19:04:37 +00:00
Include/node.h: make some fields short to save space during
parsing
This commit is contained in:
parent
b0f3c82a3b
commit
b4f066da49
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue