[Python-checkins] python/dist/src/Lib tempfile.py,1.46,1.47

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Tue, 13 Aug 2002 17:49:53 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv16084/python/Lib

Modified Files:
	tempfile.py 
Log Message:
mkstemp():  Repaired error in docstring (the sense of the 'binary' flag
was reversed).


Index: tempfile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tempfile.py,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** tempfile.py	13 Aug 2002 23:38:30 -0000	1.46
--- tempfile.py	14 Aug 2002 00:49:50 -0000	1.47
***************
*** 266,271 ****
      otherwise a default directory is used.
  
!     If 'binary' is specified and false, the file is opened in binary
!     mode.  Otherwise, the file is opened in text mode.  On some
      operating systems, this makes no difference.
  
--- 266,271 ----
      otherwise a default directory is used.
  
!     If 'binary' is specified and false, the file is opened in text
!     mode.  Otherwise, the file is opened in binary mode.  On some
      operating systems, this makes no difference.