summaryrefslogtreecommitdiff
path: root/Lib/test/test_mmap.py
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-11 11:24:41 +0000
committerPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-11 11:24:41 +0000
commit17d232bce2ac02aafe336b1d09782e52bbc36eac (patch)
treeb759d167617c6b67de3b65d092b1e92a38a7a7ed /Lib/test/test_mmap.py
parentc113a58140e392dc548281f1ded4e7e79d84a4e6 (diff)
downloadcpython-17d232bce2ac02aafe336b1d09782e52bbc36eac.tar.gz
fixed inconsistent use of tab and spaces
Diffstat (limited to 'Lib/test/test_mmap.py')
-rw-r--r--Lib/test/test_mmap.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index 171eb1497c..de78c14268 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()