From: Thomas Wouters Date: Sun, 30 Jul 2000 15:38:35 +0000 (+0000) Subject: Fix inconsistent use of tab/space in indentation. X-Git-Tag: v2.0b1~672 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a701597138f01af04db86b10c8f2faea50f7c9cf;p=python Fix inconsistent use of tab/space in indentation. --- diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 44d28f13a7..73c1a15b16 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -105,14 +105,14 @@ def test_both(): pass else: # resize() is supported - assert len(m) == 512, "len(m) is %d, but expecting 512" % (len(m),) - # Check that we can no longer seek beyond the new size. - try: - m.seek(513,0) - except ValueError: - pass - else: - assert 0, 'Could seek beyond the new size' + assert len(m) == 512, "len(m) is %d, but expecting 512" % (len(m),) + # Check that we can no longer seek beyond the new size. + try: + m.seek(513,0) + except ValueError: + pass + else: + assert 0, 'Could seek beyond the new size' m.close() os.unlink("foo")