[Python-checkins] python/dist/src/Misc NEWS,1.741,1.742

theller@users.sourceforge.net theller@users.sourceforge.net
Wed, 23 Apr 2003 12:35:33 -0700


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

Modified Files:
	NEWS 
Log Message:
Mention the new getargs.c format codes.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.741
retrieving revision 1.742
diff -C2 -d -r1.741 -r1.742
*** NEWS	23 Apr 2003 19:06:08 -0000	1.741
--- NEWS	23 Apr 2003 19:35:25 -0000	1.742
***************
*** 13,16 ****
--- 13,19 ----
  -----------------
  
+ - New format codes B, H, I, k and K have been implemented for
+   PyArg_ParseTuple and PyBuild_Value.
+ 
  - New builtin function sum(seq, start=0) returns the sum of all the
    items in iterable object seq, plus start (items are normally numbers,