From: A.M. K. <aku...@us...> - 2001-10-31 13:13:40
|
Update of /cvsroot/py-howto/pyhowto In directory usw-pr-cvs1:/tmp/cvs-serv23676 Modified Files: python-22.tex Log Message: Add paragraph about difflib suggested by David Goodger Bump version number Index: python-22.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/python-22.tex,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -r1.45 -r1.46 *** python-22.tex 2001/10/30 22:18:21 1.45 --- python-22.tex 2001/10/31 13:13:36 1.46 *************** *** 4,8 **** \title{What's New in Python 2.2} ! \release{0.08} \author{A.M. Kuchling} \authoraddress{\email{aku...@me...}} --- 4,8 ---- \title{What's New in Python 2.2} ! \release{0.09} \author{A.M. Kuchling} \authoraddress{\email{aku...@me...}} *************** *** 1149,1152 **** --- 1149,1161 ---- arising out of his work on Mailman.) + \item The \module{difflib} module now contains a new \class{Differ} + class for producing human-readable lists of changes (a ``delta'') + between two sequences of lines of text. There are also two + generator functions, \function{ndiff()} and \function{restore()}, + which respectively return a delta from two sequences, or one of the + original sequences from a delta. (Grunt work contributed by David + Goodger, from ndiff.py code by Tim Peters who then did the + generatorization.) + \item New constants \constant{ascii_letters}, \constant{ascii_lowercase}, and \constant{ascii_uppercase} were *************** *** 1396,1400 **** suggestions, corrections and assistance with various drafts of this 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, Martin von L\"owis, Fredrik Lundh, Michael McLay, Nick Mathewson, Paul Moore, Tim Peters, Jens Quade, Tom --- 1405,1409 ---- suggestions, corrections and assistance with various drafts of this article: Fred Bremmer, Keith Briggs, Andrew Dalke, Fred~L. Drake, Jr., ! Carel Fellinger, David Goodger, Mark Hammond, Stephen Hansen, Michael Hudson, Jack Jansen, Marc-Andr\'e Lemburg, Martin von L\"owis, Fredrik Lundh, Michael McLay, Nick Mathewson, Paul Moore, Tim Peters, Jens Quade, Tom |