From: A.M. K. <aku...@us...> - 2001-10-29 18:09:47
|
Update of /cvsroot/py-howto/pyhowto In directory usw-pr-cvs1:/tmp/cvs-serv18314 Modified Files: python-22.tex Log Message: Fix two typos noted by Jens Quade Bump version number Index: python-22.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/python-22.tex,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -r1.39 -r1.40 *** python-22.tex 2001/10/29 15:47:33 1.39 --- python-22.tex 2001/10/29 18:09:42 1.40 *************** *** 4,8 **** \title{What's New in Python 2.2} ! \release{0.06} \author{A.M. Kuchling} \authoraddress{\email{aku...@me...}} --- 4,8 ---- \title{What's New in Python 2.2} ! \release{0.07} \author{A.M. Kuchling} \authoraddress{\email{aku...@me...}} *************** *** 213,217 **** \item \method{__get__(\var{object})} is a method that retrieves the attribute value from \var{object}. ! \item \method{__get__(\var{object}, \var{value})} sets the attribute on \var{object} to \var{value}. --- 213,217 ---- \item \method{__get__(\var{object})} is a method that retrieves the attribute value from \var{object}. ! \item \method{__set__(\var{object}, \var{value})} sets the attribute on \var{object} to \var{value}. *************** *** 833,837 **** it using a \code{__future__} statement. ! \item By including a \code{from __future__ import true_division} in a module, the \code{/} operator will be changed to return the result of true division, so \code{1/2} is 0.5. Without the \code{__future__} --- 833,837 ---- it using a \code{__future__} statement. ! \item By including a \code{from __future__ import division} in a module, the \code{/} operator will be changed to return the result of true division, so \code{1/2} is 0.5. Without the \code{__future__} *************** *** 1281,1284 **** --- 1281,1291 ---- from Python source code. + \item An additional \var{flags} argument has been added to the + built-in function \function{compile()}, so the behaviour of + \code{__future__} statements can now be correctly observed in + simulated shells, such as those presented by IDLE and other + development environments. This is described in \pep{264}. + (Contributed by Michael Hudson.) + \item The new license introduced with Python 1.6 wasn't GPL-compatible. This is fixed by some minor textual changes to the *************** *** 1363,1368 **** article: Fred Bremmer, Keith Briggs, Andrew Dalke, Fred~L. Drake, Jr., Carel Fellinger, Mark Hammond, Stephen Hansen, Michael Hudson, Jack Jansen, ! Marc-Andr\'e Lemburg, Fredrik Lundh, Tim Peters, Tom Reinhardt, Neil ! Schemenauer, Guido van Rossum. \end{document} --- 1370,1375 ---- article: Fred Bremmer, Keith Briggs, Andrew Dalke, Fred~L. Drake, Jr., Carel Fellinger, Mark Hammond, Stephen Hansen, Michael Hudson, Jack Jansen, ! Marc-Andr\'e Lemburg, Fredrik Lundh, Tim Peters, Jens Quade, Tom Reinhardt, ! Neil Schemenauer, Guido van Rossum. \end{document} |