[Python-checkins] python/dist/src/Doc/lib libtempfile.tex,1.18,1.19

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Wed, 14 Aug 2002 09:37:12 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv24168/python/Doc/lib

Modified Files:
	libtempfile.tex 
Log Message:
mkstemp's last argument changed from binary=True to text=False.


Index: libtempfile.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtempfile.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** libtempfile.tex	9 Aug 2002 16:16:30 -0000	1.18
--- libtempfile.tex	14 Aug 2002 16:37:10 -0000	1.19
***************
*** 68,72 ****
  			  \optional{, prefix}
  			  \optional{, dir}
! 			  \optional{, binary=1}}
  Creates a temporary file in the most secure manner possible.  There
  are no race conditions in the file's creation, assuming that the
--- 68,72 ----
  			  \optional{, prefix}
  			  \optional{, dir}
! 			  \optional{, text=False}}
  Creates a temporary file in the most secure manner possible.  There
  are no race conditions in the file's creation, assuming that the
***************
*** 91,95 ****
  otherwise, a default directory is used.
  
! If \var{binary} is specified, it indicates whether to open the file in
  binary mode (the default) or text mode.  On some platforms, this makes
  no difference.
--- 91,95 ----
  otherwise, a default directory is used.
  
! If \var{text} is specified, it indicates whether to open the file in
  binary mode (the default) or text mode.  On some platforms, this makes
  no difference.