diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-11 11:24:41 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-11 11:24:41 (GMT) |
commit | 7a11671e8b61dcf653d70db714813fba23afc884 (patch) | |
tree | 7d75f6429426343602b6c0fdfe4b6f369b8dc8e3 | |
parent | d3cf692c387a49a4a3791a3ee201ff9a61889843 (diff) | |
download | cpython-7a11671e8b61dcf653d70db714813fba23afc884.zip cpython-7a11671e8b61dcf653d70db714813fba23afc884.tar.gz cpython-7a11671e8b61dcf653d70db714813fba23afc884.tar.bz2 |
fixed inconsistent use of tab and spaces
-rw-r--r-- | Lib/test/test_mmap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 171eb14..de78c14 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -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() |