[Python-checkins] python/dist/src/Misc NEWS,1.786,1.787

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 16 Jun 2003 22:05:50 -0700


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

Modified Files:
	NEWS 
Log Message:
SF #754014:  list.index() should accept optional start, end arguments

Also, modified UserList.index() to match and expanded the related tests.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.786
retrieving revision 1.787
diff -C2 -d -r1.786 -r1.787
*** NEWS	16 Jun 2003 20:38:15 -0000	1.786
--- NEWS	17 Jun 2003 05:05:48 -0000	1.787
***************
*** 13,16 ****
--- 13,19 ----
  -----------------
  
+ - list.index() now accepts optional start and stop arguments.  Similar
+   changes were made to UserList.index(). SF feature request 754014.
+ 
  - SF patch 751998 fixes an unwanted side effect of the previous fix
    for SF bug 742860 (the next item).