From: A.M. K. <aku...@us...> - 2001-09-28 20:46:52
|
Update of /cvsroot/py-howto/pyhowto In directory usw-pr-cvs1:/tmp/cvs-serv887 Modified Files: python-22.tex Log Message: Minor additions and rewrites. Bump version number. Index: python-22.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/python-22.tex,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** python-22.tex 2001/09/24 14:51:16 1.30 --- python-22.tex 2001/09/28 20:46:46 1.31 *************** *** 4,8 **** \title{What's New in Python 2.2} ! \release{0.05} \author{A.M. Kuchling} \authoraddress{\email{aku...@me...}} --- 4,8 ---- \title{What's New in Python 2.2} ! \release{0.06} \author{A.M. Kuchling} \authoraddress{\email{aku...@me...}} *************** *** 14,18 **** {\large This document is a draft, and is subject to change until the final version of Python 2.2 is released. Currently it's up to date ! for Python 2.2 alpha 1. Please send any comments, bug reports, or questions, no matter how minor, to \email{aku...@me...}. } --- 14,18 ---- {\large This document is a draft, and is subject to change until the final version of Python 2.2 is released. Currently it's up to date ! for Python 2.2 alpha 4. Please send any comments, bug reports, or questions, no matter how minor, to \email{aku...@me...}. } *************** *** 389,394 **** is large enough. - % XXX is there a warning-enabling command-line option for this? - \begin{seealso} --- 389,392 ---- *************** *** 398,401 **** --- 396,400 ---- \end{seealso} + %====================================================================== \section{PEP 238: Changing the Division Operator} *************** *** 667,672 **** # 'title': 'html2fo 0.3 (Default)'}, ... ] \end{verbatim} ! See \url{http://www.xmlrpc.com/} for more information about XML-RPC. \item The \module{socket} module can be compiled to support IPv6; --- 666,676 ---- # 'title': 'html2fo 0.3 (Default)'}, ... ] \end{verbatim} + + The \module{SimpleXMLRPCServer} module makes it easy to create + straightforward XML-RPC servers. See \url{http://www.xmlrpc.com/} for + more information about XML-RPC. ! \item The new \module{hmac} module implements implements the HMAC ! algorithm described by \rfc{2104}. \item The \module{socket} module can be compiled to support IPv6; *************** *** 708,715 **** Baxter and Michel Pelletier.) ! \item The \module{rfc822} module's parsing of email addresses is ! now compliant with \rfc{2822}, an update to \rfc{822}. The module's ! name is \emph{not} going to be changed to \samp{rfc2822}. ! (Contributed by Barry Warsaw.) \item New constants \constant{ascii_letters}, --- 712,721 ---- Baxter and Michel Pelletier.) ! \item The \module{rfc822} module's parsing of email addresses is now ! compliant with \rfc{2822}, an update to \rfc{822}. (The module's ! name is \emph{not} going to be changed to \samp{rfc2822}.) A new ! package, \module{email}, has also been added for parsing and ! generating e-mail messages. (Contributed by Barry Warsaw, and ! arising out of his work on Mailman.) \item New constants \constant{ascii_letters}, |