mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
*** empty log message ***
This commit is contained in:
parent
be3eb96e2d
commit
c1b5cec10e
2 changed files with 827 additions and 747 deletions
|
@ -1,69 +1,51 @@
|
||||||
/***********************************************************
|
|
||||||
Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
|
|
||||||
Netherlands.
|
|
||||||
|
|
||||||
All Rights Reserved
|
|
||||||
|
|
||||||
Permission to use, copy, modify, and distribute this software and its
|
|
||||||
documentation for any purpose and without fee is hereby granted,
|
|
||||||
provided that the above copyright notice appear in all copies and that
|
|
||||||
both that copyright notice and this permission notice appear in
|
|
||||||
supporting documentation, and that the names of Stichting Mathematisch
|
|
||||||
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
||||||
distribution of the software without specific, written prior permission.
|
|
||||||
|
|
||||||
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
||||||
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
||||||
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
||||||
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
||||||
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
|
|
||||||
******************************************************************/
|
|
||||||
|
|
||||||
#define single_input 256
|
#define single_input 256
|
||||||
#define file_input 257
|
#define file_input 257
|
||||||
#define expr_input 258
|
#define expr_input 258
|
||||||
#define eval_input 259
|
#define eval_input 259
|
||||||
#define funcdef 260
|
#define funcdef 260
|
||||||
#define parameters 261
|
#define parameters 261
|
||||||
#define fplist 262
|
#define varargslist 262
|
||||||
#define fpdef 263
|
#define fpdef 263
|
||||||
#define stmt 264
|
#define fplist 264
|
||||||
#define simple_stmt 265
|
#define stmt 265
|
||||||
#define small_stmt 266
|
#define simple_stmt 266
|
||||||
#define expr_stmt 267
|
#define small_stmt 267
|
||||||
#define print_stmt 268
|
#define expr_stmt 268
|
||||||
#define del_stmt 269
|
#define print_stmt 269
|
||||||
#define pass_stmt 270
|
#define del_stmt 270
|
||||||
#define flow_stmt 271
|
#define pass_stmt 271
|
||||||
#define break_stmt 272
|
#define flow_stmt 272
|
||||||
#define continue_stmt 273
|
#define break_stmt 273
|
||||||
#define return_stmt 274
|
#define continue_stmt 274
|
||||||
#define raise_stmt 275
|
#define return_stmt 275
|
||||||
#define import_stmt 276
|
#define raise_stmt 276
|
||||||
#define compound_stmt 277
|
#define import_stmt 277
|
||||||
#define if_stmt 278
|
#define global_stmt 278
|
||||||
#define while_stmt 279
|
#define compound_stmt 279
|
||||||
#define for_stmt 280
|
#define if_stmt 280
|
||||||
#define try_stmt 281
|
#define while_stmt 281
|
||||||
#define except_clause 282
|
#define for_stmt 282
|
||||||
#define suite 283
|
#define try_stmt 283
|
||||||
#define test 284
|
#define except_clause 284
|
||||||
#define and_test 285
|
#define suite 285
|
||||||
#define not_test 286
|
#define test 286
|
||||||
#define comparison 287
|
#define and_test 287
|
||||||
#define comp_op 288
|
#define not_test 288
|
||||||
#define expr 289
|
#define comparison 289
|
||||||
#define term 290
|
#define comp_op 290
|
||||||
#define factor 291
|
#define expr 291
|
||||||
#define atom 292
|
#define xor_expr 292
|
||||||
#define trailer 293
|
#define and_expr 293
|
||||||
#define subscript 294
|
#define shift_expr 294
|
||||||
#define exprlist 295
|
#define arith_expr 295
|
||||||
#define testlist 296
|
#define term 296
|
||||||
#define dictmaker 297
|
#define factor 297
|
||||||
#define classdef 298
|
#define atom 298
|
||||||
#define baselist 299
|
#define trailer 299
|
||||||
#define arguments 300
|
#define subscript 300
|
||||||
|
#define exprlist 301
|
||||||
|
#define testlist 302
|
||||||
|
#define dictmaker 303
|
||||||
|
#define classdef 304
|
||||||
|
#define baselist 305
|
||||||
|
#define arguments 306
|
||||||
|
|
1468
Python/graminit.c
1468
Python/graminit.c
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue