[Python-checkins] python/dist/src/Misc NEWS,1.738,1.739
aleax@users.sourceforge.net
aleax@users.sourceforge.net
Tue, 22 Apr 2003 01:13:05 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv22004/src/Misc
Modified Files:
NEWS
Log Message:
Adding new built-in function sum, with docs and tests.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.738
retrieving revision 1.739
diff -C2 -d -r1.738 -r1.739
*** NEWS 22 Apr 2003 06:49:08 -0000 1.738
--- NEWS 22 Apr 2003 08:12:31 -0000 1.739
***************
*** 13,16 ****
--- 13,20 ----
-----------------
+ - New builtin function sum(seq, start=0) returns the sum of all the
+ items in iterable object seq, plus start (items are normally numbers,
+ and cannot be strings).
+
- bool() called without arguments now returns False rather than
raising an exception. This is consistent with calling the