diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-10-23 18:08:03 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-10-23 18:08:03 (GMT) |
commit | 50a25709f2693cbd8953d5bc0cf084ec03aa1e7b (patch) | |
tree | e3f8e719eaca5f1b333e24d39814cfaac018c15c /Doc | |
parent | d4210bc7182c44db6a57d10e1769331b584311e7 (diff) | |
download | cpython-50a25709f2693cbd8953d5bc0cf084ec03aa1e7b.zip cpython-50a25709f2693cbd8953d5bc0cf084ec03aa1e7b.tar.gz cpython-50a25709f2693cbd8953d5bc0cf084ec03aa1e7b.tar.bz2 |
Record an item I missed and bump the version number. [2.3 bugfix candidate.]
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew23.tex | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex index 55e90ac..1376e29 100644 --- a/Doc/whatsnew/whatsnew23.tex +++ b/Doc/whatsnew/whatsnew23.tex @@ -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}))}. |