]> granicus.if.org Git - python/commitdiff
Record an item I missed and bump the version number. [2.3 bugfix candidate.]
authorAndrew M. Kuchling <amk@amk.ca>
Thu, 23 Oct 2003 18:08:03 +0000 (18:08 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Thu, 23 Oct 2003 18:08:03 +0000 (18:08 +0000)
Doc/whatsnew/whatsnew23.tex

index 55e90acf5f17c61d805e071778ecc81c0ef02133..1376e29a8440445b71faa882a52a9f9eaadd3300 100644 (file)
@@ -3,7 +3,7 @@
 % $Id$
 
 \title{What's New in Python 2.3}
-\release{1.00}
+\release{1.01}
 \author{A.M.\ Kuchling}
 \authoraddress{\email{amk@amk.ca}}
 
@@ -2169,6 +2169,11 @@ pre-2.2 versions of Python is important, the code could use
 \code{PyArg_ParseTuple(\var{args}, "")} instead, but this will be slower
 than using \constant{METH_NOARGS}.
 
+\item \cfunction{PyArg_ParseTuple()} accepts new format characters for various sizes of unsigned integers: \samp{B} for \ctype{unsigned char},
+\samp{H} for \ctype{unsigned short int}, 
+\samp{I} for \ctype{unsigned int}, 
+and \samp{K} for \ctype{unsigned long long}.
+
 \item A new function, \cfunction{PyObject_DelItemString(\var{mapping},
 char *\var{key})} was added as shorthand for
 \code{PyObject_DelItem(\var{mapping}, PyString_New(\var{key}))}.