[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.84, 1.85

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Aug 7 15:58:19 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23936

Modified Files:
	whatsnew24.tex 
Log Message:
Add recent items

Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** whatsnew24.tex	7 Aug 2004 13:24:12 -0000	1.84
--- whatsnew24.tex	7 Aug 2004 13:58:02 -0000	1.85
***************
*** 870,873 ****
--- 870,876 ----
  \end{itemize} 
  
+ item Some other new encodings were added: ISO_8859-11, ISO_8859-16, PCTP-154, 
+ and TIS-620.
+ 
  \item There is a new \module{collections} module for 
     various specialized collection datatypes.  
***************
*** 1040,1043 ****
--- 1043,1052 ----
  \end{verbatim}
  
+ \item The \module{optparse} module was updated.  The module now passes
+ its messages through \function{gettext.gettext()}, making it possible
+ to internationalize Optik's help and error messages.  Help messages
+ for options can now include the string \code{'%default'}, which will
+ be replaced by the option's default value.
+ 
  \item A new \function{getsid()} function was added to the
  \module{posix} module that underlies the \module{os} module.
***************
*** 1136,1139 ****
--- 1145,1153 ----
    during the look-up process.
  
+   \item A new function, \cfunction{PyArg_VaParseTupleAndKeywords()},
+   is the same as \cfunction{PyArg_ParseTupleAndKeywords()} but takes a 
+   \ctype{va_list} instead of a number of arguments.
+   (Contributed by Greg Chapman.)
+ 
    \item A new method flag, \constant{METH_COEXISTS}, allows a function
    defined in slots to co-exist with a \ctype{PyCFunction} having the



More information about the Python-checkins mailing list