mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
* compile.[ch]: support for lambda()
* PROTO.h, mymalloc.h: added #ifdefs for TURBOC and GNUC. * allobjects.h: added #include "rangeobject.h" * Grammar: added lambda_input; relaxed syntax for exec. * bltinmodule.c: added bagof, map, reduce, lambda, xrange. * tupleobject.[ch]: added resizetuple(). * rangeobject.[ch]: new object type to speed up range operations (not convinced this is needed!!!)
This commit is contained in:
parent
444fc7c90c
commit
12d12c5faf
12 changed files with 1683 additions and 750 deletions
|
@ -1,7 +1,7 @@
|
|||
#define single_input 256
|
||||
#define file_input 257
|
||||
#define expr_input 258
|
||||
#define eval_input 259
|
||||
#define eval_input 258
|
||||
#define lambda_input 259
|
||||
#define funcdef 260
|
||||
#define parameters 261
|
||||
#define varargslist 262
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue