Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7a11671

Browse files
author
Peter Schneider-Kamp
committed
fixed inconsistent use of tab and spaces
1 parent d3cf692 commit 7a11671

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_mmap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_both():
6969
m.seek(0,2)
7070
print ' Seek to last byte'
7171
assert m.tell() == len(m)
72-
72+
7373
print ' Try to seek to negative position...'
7474
try:
7575
m.seek(-1)
@@ -97,14 +97,14 @@ def test_both():
9797
# Try resizing map
9898
print ' Attempting resize()'
9999
try:
100-
m.resize( 512 )
100+
m.resize( 512 )
101101
except SystemError:
102102
# resize() not supported
103103
# No messages are printed, since the output of this test suite
104104
# would then be different across platforms.
105105
pass
106106
else:
107-
# resize() is supported
107+
# resize() is supported
108108
pass
109109

110110
m.close()

0 commit comments

Comments
 (0)