[Python-checkins] CVS: python/dist/src/Misc NEWS,1.187,1.188

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 05 Jul 2001 07:46:27 -0700


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

Modified Files:
	NEWS 
Log Message:
News about xrange().


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.187
retrieving revision 1.188
diff -C2 -r1.187 -r1.188
*** NEWS	2001/06/26 20:12:50	1.187
--- NEWS	2001/07/05 14:46:25	1.188
***************
*** 139,142 ****
--- 139,146 ----
  Library
  
+ - The xrange() object is simplified: it no longer supports slicing,
+   repetition, comparisons, efficient 'in' checking, the tolist()
+   method, or the start, stop and step attributes.  See PEP 260.
+ 
  - A new function fnmatch.filter to filter lists of file names was added.