Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | /*********************************************************** |
| 2 | Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The |
| 3 | Netherlands. |
| 4 | |
| 5 | All Rights Reserved |
| 6 | |
| 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
| 9 | provided that the above copyright notice appear in all copies and that |
| 10 | both that copyright notice and this permission notice appear in |
| 11 | supporting documentation, and that the names of Stichting Mathematisch |
| 12 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 13 | distribution of the software without specific, written prior permission. |
| 14 | |
| 15 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 16 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 18 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 20 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 21 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 22 | |
| 23 | ******************************************************************/ |
| 24 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 25 | #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 Rossum | 18315a0 | 1991-07-27 21:38:01 +0000 | [diff] [blame] | 35 | #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 |