[Python-checkins] CVS: python/dist/src/Misc NEWS,1.88,1.89

Tim Peters python-dev@python.org
Fri, 05 Jan 2001 00:05:34 -0800


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

Modified Files:
	NEWS 
Log Message:
Clarification of new bisect module functions.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -r1.88 -r1.89
*** NEWS	2001/01/04 20:30:56	1.88
--- NEWS	2001/01/05 08:05:32	1.89
***************
*** 52,56 ****
    compares equal to one or more elements already in the list:  the
    XXX_left methods insert to the left, the XXX_right methods to the
!   right.
  
  
--- 52,57 ----
    compares equal to one or more elements already in the list:  the
    XXX_left methods insert to the left, the XXX_right methods to the
!   right.  Code that doesn't care where equal elements end up should
!   continue to use the old, short names ("bisect" and "insort").