]> granicus.if.org Git - python/commitdiff
fixed inconsistent use of tab and spaces
authorPeter Schneider-Kamp <nowonder@nowonder.de>
Tue, 11 Jul 2000 11:24:41 +0000 (11:24 +0000)
committerPeter Schneider-Kamp <nowonder@nowonder.de>
Tue, 11 Jul 2000 11:24:41 +0000 (11:24 +0000)
Lib/test/test_mmap.py

index 171eb1497c049d70ef3275bbc1fcade036bbf807..de78c14268f51a894237658520d956a42433f90f 100644 (file)
@@ -69,7 +69,7 @@ def test_both():
     m.seek(0,2)
     print '  Seek to last byte'
     assert m.tell() == len(m)
-       
+
     print '  Try to seek to negative position...'
     try:
         m.seek(-1)
@@ -97,14 +97,14 @@ def test_both():
     # Try resizing map
     print '  Attempting resize()'
     try:
-       m.resize( 512 )
+        m.resize( 512 )
     except SystemError:
         # resize() not supported
         # No messages are printed, since the output of this test suite
         # would then be different across platforms.
         pass
     else:
-       # resize() is supported
+        # resize() is supported
         pass
     
     m.close()