diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-30 15:38:35 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-30 15:38:35 (GMT) |
commit | a701597138f01af04db86b10c8f2faea50f7c9cf (patch) | |
tree | 4e7c21391e524105e27a5489ea931fafa41c36fa | |
parent | 071864acb2ed0966fb3503e790a0e3faa15f3795 (diff) | |
download | cpython-a701597138f01af04db86b10c8f2faea50f7c9cf.zip cpython-a701597138f01af04db86b10c8f2faea50f7c9cf.tar.gz cpython-a701597138f01af04db86b10c8f2faea50f7c9cf.tar.bz2 |
Fix inconsistent use of tab/space in indentation.
-rw-r--r-- | Lib/test/test_mmap.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 44d28f1..73c1a15 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") |