[Python-checkins] python/dist/src/Misc NEWS,1.591,1.592

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Thu, 02 Jan 2003 12:51:10 -0800


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

Modified Files:
	NEWS 
Log Message:
Allow list sort's comparison function to explicitly be None.  See SF patch
661092.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.591
retrieving revision 1.592
diff -C2 -d -r1.591 -r1.592
*** NEWS	2 Jan 2003 19:35:54 -0000	1.591
--- NEWS	2 Jan 2003 20:51:05 -0000	1.592
***************
*** 13,16 ****
--- 13,20 ----
  -----------------
  
+ - List objects' sort() method now accepts None as the comparison function.
+   Passing None is semantically identical to calling sort() with no
+   arguments.
+ 
  Extension modules
  -----------------