[Python-checkins] CVS: python/dist/src/Lib/test test_mmap.py,1.6,1.7

Peter Schneider-Kamp python-dev@python.org
Tue, 11 Jul 2000 04:24:44 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv18786

Modified Files:
	test_mmap.py 
Log Message:

fixed inconsistent use of tab and spaces



Index: test_mmap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_mmap.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** test_mmap.py	2000/07/11 10:45:27	1.6
--- test_mmap.py	2000/07/11 11:24:41	1.7
***************
*** 70,74 ****
      print '  Seek to last byte'
      assert m.tell() == len(m)
! 	
      print '  Try to seek to negative position...'
      try:
--- 70,74 ----
      print '  Seek to last byte'
      assert m.tell() == len(m)
! 
      print '  Try to seek to negative position...'
      try:
***************
*** 98,102 ****
      print '  Attempting resize()'
      try:
! 	m.resize( 512 )
      except SystemError:
          # resize() not supported
--- 98,102 ----
      print '  Attempting resize()'
      try:
!         m.resize( 512 )
      except SystemError:
          # resize() not supported
***************
*** 105,109 ****
          pass
      else:
! 	# resize() is supported
          pass
      
--- 105,109 ----
          pass
      else:
!         # resize() is supported
          pass