[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex, 1.162, 1.163

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Thu Oct 23 14:08:06 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1:/tmp/cvs-serv13464

Modified Files:
	whatsnew23.tex 
Log Message:
Record an item I missed and bump the version number.  [2.3 bugfix candidate.]

Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.162
retrieving revision 1.163
diff -C2 -d -r1.162 -r1.163
*** whatsnew23.tex	21 Sep 2003 23:41:02 -0000	1.162
--- whatsnew23.tex	23 Oct 2003 18:08:03 -0000	1.163
***************
*** 4,8 ****
  
  \title{What's New in Python 2.3}
! \release{1.00}
  \author{A.M.\ Kuchling}
  \authoraddress{\email{amk at amk.ca}}
--- 4,8 ----
  
  \title{What's New in Python 2.3}
! \release{1.01}
  \author{A.M.\ Kuchling}
  \authoraddress{\email{amk at amk.ca}}
***************
*** 2169,2172 ****
--- 2169,2177 ----
  \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},





More information about the Python-checkins mailing list