[Python-checkins] python/dist/src Makefile.pre.in,1.81,1.82

gvanrossum@sourceforge.net gvanrossum@sourceforge.net
Fri, 26 Apr 2002 12:41:26 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv23330

Modified Files:
	Makefile.pre.in 
Log Message:
- New builtin function enumerate(x), from PEP 279.  Example:
  enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c").
  The argument can be an arbitrary iterable object.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.81
retrieving revision 1.82
diff -C2 -d -r1.81 -r1.82
*** Makefile.pre.in	22 Apr 2002 03:05:25 -0000	1.81
--- Makefile.pre.in	26 Apr 2002 19:40:53 -0000	1.82
***************
*** 258,261 ****
--- 258,262 ----
  		Objects/complexobject.o \
  		Objects/descrobject.o \
+ 		Objects/enumobject.o \
  		Objects/fileobject.o \
  		Objects/floatobject.o \
***************
*** 444,447 ****
--- 445,449 ----
  		Include/descrobject.h \
  		Include/dictobject.h \
+ 		Include/enumobject.h \
  		Include/fileobject.h \
  		Include/floatobject.h \