[Python-checkins] CVS: python/dist/src/Lib tempfile.py,1.27,1.28

Jeremy Hylton jhylton@users.sourceforge.net
Mon, 19 Feb 2001 07:34:12 -0800


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

Modified Files:
	tempfile.py 
Log Message:
fix long line


Index: tempfile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tempfile.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** tempfile.py	2001/01/15 03:26:36	1.27
--- tempfile.py	2001/02/19 15:34:10	1.28
***************
*** 42,46 ****
              if os.name == 'posix':
                  try:
!                     fd = os.open(filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0700)
                  except OSError:
                      pass
--- 42,47 ----
              if os.name == 'posix':
                  try:
!                     fd = os.open(filename,
!                                  os.O_RDWR | os.O_CREAT | os.O_EXCL, 0700)
                  except OSError:
                      pass