[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.30, 1.31

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Feb 12 13:13:17 EST 2004


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

Modified Files:
	whatsnew24.tex 
Log Message:
minor markup improvements


Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** whatsnew24.tex	9 Feb 2004 13:23:34 -0000	1.30
--- whatsnew24.tex	12 Feb 2004 18:13:12 -0000	1.31
***************
*** 480,492 ****
    \csimplemacro{Py_RETURN_TRUE}, and \csimplemacro{Py_RETURN_FALSE}.
  
!   \item A new function, \cfunction{PyTuple_Pack(N, obj1, obj2, ...,
!   objN)}, constructs tuples from a variable length argument list of
!   Python objects.
  
!   \item A new function, \cfunction{PyDict_Contains(d, k)}, implements
!   fast dictionary lookups without masking exceptions raised during the
!   look-up process.
  
!   \item A new method flag, \code{METH_COEXISTS}, allows a function
    defined in slots to co-exist with a PyCFunction having the same name.
    This can halve the access to time to a method such as
--- 480,492 ----
    \csimplemacro{Py_RETURN_TRUE}, and \csimplemacro{Py_RETURN_FALSE}.
  
!   \item A new function, \cfunction{PyTuple_Pack(\var{N}, \var{obj1},
!   \var{obj2}, ..., \var{objN})}, constructs tuples from a variable
!   length argument list of Python objects.
  
!   \item A new function, \cfunction{PyDict_Contains(\var{d}, \var{k})},
!   implements fast dictionary lookups without masking exceptions raised
!   during the look-up process.
  
!   \item A new method flag, \constant{METH_COEXISTS}, allows a function
    defined in slots to co-exist with a PyCFunction having the same name.
    This can halve the access to time to a method such as




More information about the Python-checkins mailing list