From: Thomas Heller Date: Wed, 23 Apr 2003 19:35:25 +0000 (+0000) Subject: Mention the new getargs.c format codes. X-Git-Tag: v2.3c1~1060 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5eccabc7306db0e0db237c41424a56b61056db09;p=thirdparty%2FPython%2Fcpython.git Mention the new getargs.c format codes. --- diff --git a/Misc/NEWS b/Misc/NEWS index 5c70af8b4995..4996f1b7255e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,9 @@ What's New in Python 2.3 beta 1? Core and builtins ----------------- +- 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, and cannot be strings).