mirror of
https://github.com/python/cpython.git
synced 2024-11-28 12:31:14 +08:00
*** empty log message ***
This commit is contained in:
parent
be3eb96e2d
commit
c1b5cec10e
@ -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 file_input 257
|
||||
#define expr_input 258
|
||||
#define eval_input 259
|
||||
#define funcdef 260
|
||||
#define parameters 261
|
||||
#define fplist 262
|
||||
#define varargslist 262
|
||||
#define fpdef 263
|
||||
#define stmt 264
|
||||
#define simple_stmt 265
|
||||
#define small_stmt 266
|
||||
#define expr_stmt 267
|
||||
#define print_stmt 268
|
||||
#define del_stmt 269
|
||||
#define pass_stmt 270
|
||||
#define flow_stmt 271
|
||||
#define break_stmt 272
|
||||
#define continue_stmt 273
|
||||
#define return_stmt 274
|
||||
#define raise_stmt 275
|
||||
#define import_stmt 276
|
||||
#define compound_stmt 277
|
||||
#define if_stmt 278
|
||||
#define while_stmt 279
|
||||
#define for_stmt 280
|
||||
#define try_stmt 281
|
||||
#define except_clause 282
|
||||
#define suite 283
|
||||
#define test 284
|
||||
#define and_test 285
|
||||
#define not_test 286
|
||||
#define comparison 287
|
||||
#define comp_op 288
|
||||
#define expr 289
|
||||
#define term 290
|
||||
#define factor 291
|
||||
#define atom 292
|
||||
#define trailer 293
|
||||
#define subscript 294
|
||||
#define exprlist 295
|
||||
#define testlist 296
|
||||
#define dictmaker 297
|
||||
#define classdef 298
|
||||
#define baselist 299
|
||||
#define arguments 300
|
||||
#define fplist 264
|
||||
#define stmt 265
|
||||
#define simple_stmt 266
|
||||
#define small_stmt 267
|
||||
#define expr_stmt 268
|
||||
#define print_stmt 269
|
||||
#define del_stmt 270
|
||||
#define pass_stmt 271
|
||||
#define flow_stmt 272
|
||||
#define break_stmt 273
|
||||
#define continue_stmt 274
|
||||
#define return_stmt 275
|
||||
#define raise_stmt 276
|
||||
#define import_stmt 277
|
||||
#define global_stmt 278
|
||||
#define compound_stmt 279
|
||||
#define if_stmt 280
|
||||
#define while_stmt 281
|
||||
#define for_stmt 282
|
||||
#define try_stmt 283
|
||||
#define except_clause 284
|
||||
#define suite 285
|
||||
#define test 286
|
||||
#define and_test 287
|
||||
#define not_test 288
|
||||
#define comparison 289
|
||||
#define comp_op 290
|
||||
#define expr 291
|
||||
#define xor_expr 292
|
||||
#define and_expr 293
|
||||
#define shift_expr 294
|
||||
#define arith_expr 295
|
||||
#define term 296
|
||||
#define factor 297
|
||||
#define atom 298
|
||||
#define trailer 299
|
||||
#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…
Reference in New Issue
Block a user