mirror of
https://github.com/python/cpython.git
synced 2025-11-28 22:18:54 +00:00
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55329 | brett.cannon | 2007-05-14 16:36:56 -0700 (Mon, 14 May 2007) | 3 lines Implement the removal of tuple parameter unpacking (PEP 3113). Thanks, Tony Lownds for the patch. ........ r55331 | neal.norwitz | 2007-05-14 16:40:30 -0700 (Mon, 14 May 2007) | 1 line Update to use Python 3.0 ........ r55332 | brett.cannon | 2007-05-14 16:47:18 -0700 (Mon, 14 May 2007) | 2 lines Mention PEP 3113. And thanks to Tony Lownds for the PEP 3113 patch. ........ r55333 | neal.norwitz | 2007-05-14 16:57:06 -0700 (Mon, 14 May 2007) | 1 line Fix exception printing (no more exceptions module) ........ r55334 | neal.norwitz | 2007-05-14 17:11:10 -0700 (Mon, 14 May 2007) | 1 line Remove popen* functions from os ........ r55335 | neal.norwitz | 2007-05-14 18:03:38 -0700 (Mon, 14 May 2007) | 1 line Get rid of most of popen. There are still some uses I need to cleanup. ........ r55336 | neal.norwitz | 2007-05-14 21:11:34 -0700 (Mon, 14 May 2007) | 1 line Remove a few more remnants of the compiler package ........ r55337 | neal.norwitz | 2007-05-14 22:28:27 -0700 (Mon, 14 May 2007) | 1 line Get test_[cx]pickle working on 64-bit platforms (avoid overflow int/long) ........
80 lines
1.7 KiB
C
80 lines
1.7 KiB
C
#define single_input 256
|
|
#define file_input 257
|
|
#define eval_input 258
|
|
#define decorator 259
|
|
#define decorators 260
|
|
#define funcdef 261
|
|
#define parameters 262
|
|
#define typedargslist 263
|
|
#define tfpdef 264
|
|
#define varargslist 265
|
|
#define vfpdef 266
|
|
#define stmt 267
|
|
#define simple_stmt 268
|
|
#define small_stmt 269
|
|
#define expr_stmt 270
|
|
#define augassign 271
|
|
#define del_stmt 272
|
|
#define pass_stmt 273
|
|
#define flow_stmt 274
|
|
#define break_stmt 275
|
|
#define continue_stmt 276
|
|
#define return_stmt 277
|
|
#define yield_stmt 278
|
|
#define raise_stmt 279
|
|
#define import_stmt 280
|
|
#define import_name 281
|
|
#define import_from 282
|
|
#define import_as_name 283
|
|
#define dotted_as_name 284
|
|
#define import_as_names 285
|
|
#define dotted_as_names 286
|
|
#define dotted_name 287
|
|
#define global_stmt 288
|
|
#define nonlocal_stmt 289
|
|
#define assert_stmt 290
|
|
#define compound_stmt 291
|
|
#define if_stmt 292
|
|
#define while_stmt 293
|
|
#define for_stmt 294
|
|
#define try_stmt 295
|
|
#define with_stmt 296
|
|
#define with_var 297
|
|
#define except_clause 298
|
|
#define suite 299
|
|
#define test 300
|
|
#define test_nocond 301
|
|
#define lambdef 302
|
|
#define lambdef_nocond 303
|
|
#define or_test 304
|
|
#define and_test 305
|
|
#define not_test 306
|
|
#define comparison 307
|
|
#define comp_op 308
|
|
#define star_expr 309
|
|
#define expr 310
|
|
#define xor_expr 311
|
|
#define and_expr 312
|
|
#define shift_expr 313
|
|
#define arith_expr 314
|
|
#define term 315
|
|
#define factor 316
|
|
#define power 317
|
|
#define atom 318
|
|
#define testlist_comp 319
|
|
#define trailer 320
|
|
#define subscriptlist 321
|
|
#define subscript 322
|
|
#define sliceop 323
|
|
#define exprlist 324
|
|
#define testlist 325
|
|
#define dictorsetmaker 326
|
|
#define classdef 327
|
|
#define arglist 328
|
|
#define argument 329
|
|
#define comp_iter 330
|
|
#define comp_for 331
|
|
#define comp_if 332
|
|
#define testlist1 333
|
|
#define encoding_decl 334
|
|
#define yield_expr 335
|