Mailing List Archive

python/dist/src/Doc/lib libbz2.tex,1.2,1.3
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv3259/lib

Modified Files:
libbz2.tex
Log Message:
Fix minor wording and 2 typos

Index: libbz2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libbz2.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** libbz2.tex 5 Nov 2002 17:54:02 -0000 1.2
--- libbz2.tex 5 Nov 2002 23:55:27 -0000 1.3
***************
*** 24,28 ****
\item \class{BZ2File} class offers an optimized line iteration using
the readahead algorithm borrowed from file objects;
! \item \class{BZ2File} class developed inheriting builtin file type
(\code{issubclass(BZ2File, file)} is \code{True});
\item Sequential (de)compression supported by \class{BZ2Compressor} and
--- 24,28 ----
\item \class{BZ2File} class offers an optimized line iteration using
the readahead algorithm borrowed from file objects;
! \item \class{BZ2File} class inherits from the builtin file type
(\code{issubclass(BZ2File, file)} is \code{True});
\item Sequential (de)compression supported by \class{BZ2Compressor} and
***************
*** 88,92 ****

\begin{methoddesc}[BZ2File]{\_\_iter\_\_}{}
! Iterate trough the file lines. Iteration optimization is implemented
using the same readahead algorithm available in \class{file} objects.
\end{methoddesc}
--- 88,92 ----

\begin{methoddesc}[BZ2File]{\_\_iter\_\_}{}
! Iterate through the file lines. Iteration optimization is implemented
using the same readahead algorithm available in \class{file} objects.
\end{methoddesc}
***************
*** 162,166 ****
\subsection{One-shot (de)compression}

! One-shot compression and decompression is provided trough the
\function{compress()} and \function{decompress()} functions.

--- 162,166 ----
\subsection{One-shot (de)compression}

! One-shot compression and decompression is provided through the
\function{compress()} and \function{decompress()} functions.