[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
- Previous message: [Python-checkins] python/dist/src/Lib BaseHTTPServer.py, 1.28,
1.29 Bastion.py, 1.7, 1.8 CGIHTTPServer.py, 1.32, 1.33 ConfigParser.py, 1.61,
1.62 HTMLParser.py, 1.12, 1.13 StringIO.py, 1.32, 1.33 aifc.py, 1.42,
1.43 atexit.py, 1.6, 1.7 base64.py, 1.15, 1.16 bdb.py, 1.42, 1.43 binhex.py,
1.22, 1.23 calendar.py, 1.32, 1.33 cgi.py, 1.76, 1.77 difflib.py, 1.17,
1.18 dis.py, 1.47, 1.48 doctest.py, 1.32, 1.33 formatter.py, 1.23,
1.24 fpformat.py, 1.9, 1.10 ftplib.py, 1.72, 1.73 gopherlib.py, 1.13,
1.14 gzip.py, 1.39, 1.40 ihooks.py, 1.17, 1.18 imaplib.py, 1.65,
1.66 macurl2path.py, 1.11, 1.12 markupbase.py, 1.8, 1.9 mhlib.py, 1.36,
1.37 mimetools.py, 1.29, 1.30 modulefinder.py, 1.8, 1.9 nntplib.py, 1.36,
1.37 opcode.py, 1.3, 1.4 pdb.py, 1.66, 1.67 pickle.py, 1.156, 1.157 pipes.py,
1.12, 1.13 popen2.py, 1.28, 1.29 poplib.py, 1.22, 1.23 posixfile.py, 1.24,
1.25 pprint.py, 1.28, 1.29 pre.py, 1.15, 1.16 profile.py, 1.50,
1.51 pstats.py, 1.29, 1.30 regsub.py, 1.14, 1.15 repr.py, 1.15,
1.16 rexec.py, 1.48, 1.49 sgmllib.py, 1.46, 1.47 shlex.py, 1.22,
1.23 site.py, 1.55, 1.56 smtplib.py, !
1.63, 1.64 stringold.py, 1.47, 1.48 sunaudio.py, 1.7, 1.8 tabnanny.py, 1.21,
1.22 telnetlib.py, 1.23, 1.24 toaiff.py, 1.14, 1.15 trace.py, 1.16,
1.17 unittest.py, 1.33, 1.34 urllib.py, 1.159, 1.160 warnings.py, 1.21,
1.22 wave.py, 1.16, 1.17 xdrlib.py, 1.15, 1.16 xmllib.py, 1.31, 1.32
- Next message: [Python-checkins] python/dist/src/Lib/test test_weakref.py, 1.36,
1.37
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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
- Previous message: [Python-checkins] python/dist/src/Lib BaseHTTPServer.py, 1.28,
1.29 Bastion.py, 1.7, 1.8 CGIHTTPServer.py, 1.32, 1.33 ConfigParser.py, 1.61,
1.62 HTMLParser.py, 1.12, 1.13 StringIO.py, 1.32, 1.33 aifc.py, 1.42,
1.43 atexit.py, 1.6, 1.7 base64.py, 1.15, 1.16 bdb.py, 1.42, 1.43 binhex.py,
1.22, 1.23 calendar.py, 1.32, 1.33 cgi.py, 1.76, 1.77 difflib.py, 1.17,
1.18 dis.py, 1.47, 1.48 doctest.py, 1.32, 1.33 formatter.py, 1.23,
1.24 fpformat.py, 1.9, 1.10 ftplib.py, 1.72, 1.73 gopherlib.py, 1.13,
1.14 gzip.py, 1.39, 1.40 ihooks.py, 1.17, 1.18 imaplib.py, 1.65,
1.66 macurl2path.py, 1.11, 1.12 markupbase.py, 1.8, 1.9 mhlib.py, 1.36,
1.37 mimetools.py, 1.29, 1.30 modulefinder.py, 1.8, 1.9 nntplib.py, 1.36,
1.37 opcode.py, 1.3, 1.4 pdb.py, 1.66, 1.67 pickle.py, 1.156, 1.157 pipes.py,
1.12, 1.13 popen2.py, 1.28, 1.29 poplib.py, 1.22, 1.23 posixfile.py, 1.24,
1.25 pprint.py, 1.28, 1.29 pre.py, 1.15, 1.16 profile.py, 1.50,
1.51 pstats.py, 1.29, 1.30 regsub.py, 1.14, 1.15 repr.py, 1.15,
1.16 rexec.py, 1.48, 1.49 sgmllib.py, 1.46, 1.47 shlex.py, 1.22,
1.23 site.py, 1.55, 1.56 smtplib.py, !
1.63, 1.64 stringold.py, 1.47, 1.48 sunaudio.py, 1.7, 1.8 tabnanny.py, 1.21,
1.22 telnetlib.py, 1.23, 1.24 toaiff.py, 1.14, 1.15 trace.py, 1.16,
1.17 unittest.py, 1.33, 1.34 urllib.py, 1.159, 1.160 warnings.py, 1.21,
1.22 wave.py, 1.16, 1.17 xdrlib.py, 1.15, 1.16 xmllib.py, 1.31, 1.32
- Next message: [Python-checkins] python/dist/src/Lib/test test_weakref.py, 1.36,
1.37
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list