[Python-checkins] python/dist/src/Doc/lib libgzip.tex,1.14,1.15
montanaro@users.sourceforge.net
montanaro@users.sourceforge.net
Fri, 02 Aug 2002 10:20:48 -0700
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv15962
Modified Files:
libgzip.tex
Log Message:
indicate that 'b' is added to the mode flag if not given
Index: libgzip.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libgzip.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** libgzip.tex 9 Aug 2001 07:21:56 -0000 1.14
--- libgzip.tex 2 Aug 2002 17:20:46 -0000 1.15
***************
*** 42,47 ****
whether the file will be read or written. The default is the mode of
\var{fileobj} if discernible; otherwise, the default is \code{'rb'}.
! Be aware that only the \code{'rb'}, \code{'ab'}, and \code{'wb'}
! values should be used for cross-platform portability.
The \var{compresslevel} argument is an integer from \code{1} to
--- 42,47 ----
whether the file will be read or written. The default is the mode of
\var{fileobj} if discernible; otherwise, the default is \code{'rb'}.
! If not given, the 'b' flag will be added to the mode to ensure the
! file is opened in binary mode for cross-platform portability.
The \var{compresslevel} argument is an integer from \code{1} to