]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
* compile.[ch]: support for lambda()
authorGuido van Rossum <guido@python.org>
Tue, 26 Oct 1993 17:58:25 +0000 (17:58 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 26 Oct 1993 17:58:25 +0000 (17:58 +0000)
commit12d12c5faf4d770160b7975b54e8f9b12694e012
treee5528ca45963a90c5797073228090d221cdc6bba
parent444fc7c90cf210ec72f1c4204310f659263b6f75
* 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!!!)
12 files changed:
Grammar/Grammar
Include/allobjects.h
Include/compile.h
Include/graminit.h
Include/mymalloc.h
Include/rangeobject.h [new file with mode: 0644]
Include/tupleobject.h
Objects/rangeobject.c [new file with mode: 0644]
Objects/tupleobject.c
Python/bltinmodule.c
Python/compile.c
Python/graminit.c