blob: 23d889725aaded1c708629b783d5d682f0f45643 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
2Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
3Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025#define single_input 256
26#define file_input 257
27#define expr_input 258
28#define eval_input 259
29#define funcdef 260
30#define parameters 261
31#define fplist 262
32#define fpdef 263
33#define stmt 264
34#define simple_stmt 265
Guido van Rossum18315a01991-07-27 21:38:01 +000035#define small_stmt 266
36#define expr_stmt 267
37#define print_stmt 268
38#define del_stmt 269
39#define pass_stmt 270
40#define flow_stmt 271
41#define break_stmt 272
42#define continue_stmt 273
43#define return_stmt 274
44#define raise_stmt 275
45#define import_stmt 276
46#define compound_stmt 277
47#define if_stmt 278
48#define while_stmt 279
49#define for_stmt 280
50#define try_stmt 281
51#define except_clause 282
52#define suite 283
53#define test 284
54#define and_test 285
55#define not_test 286
56#define comparison 287
57#define comp_op 288
58#define expr 289
59#define term 290
60#define factor 291
61#define atom 292
62#define trailer 293
63#define subscript 294
64#define exprlist 295
65#define testlist 296
66#define dictmaker 297
67#define classdef 298
68#define baselist 299
69#define arguments 300