summaryrefslogtreecommitdiffstats
path: root/Include/allobjects.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-10-26 17:58:25 (GMT)
committerGuido van Rossum <guido@python.org>1993-10-26 17:58:25 (GMT)
commit12d12c5faf4d770160b7975b54e8f9b12694e012 (patch)
treee5528ca45963a90c5797073228090d221cdc6bba /Include/allobjects.h
parent444fc7c90cf210ec72f1c4204310f659263b6f75 (diff)
downloadcpython-12d12c5faf4d770160b7975b54e8f9b12694e012.zip
cpython-12d12c5faf4d770160b7975b54e8f9b12694e012.tar.gz
cpython-12d12c5faf4d770160b7975b54e8f9b12694e012.tar.bz2
* 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!!!)
Diffstat (limited to 'Include/allobjects.h')
-rw-r--r--Include/allobjects.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/allobjects.h b/Include/allobjects.h
index 8f9091a..17d6dd2 100644
--- a/Include/allobjects.h
+++ b/Include/allobjects.h
@@ -46,6 +46,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "intobject.h"
#include "longobject.h"
#include "floatobject.h"
+#include "rangeobject.h"
#include "stringobject.h"
#include "tupleobject.h"
#include "listobject.h"