Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3cf692 commit 7a11671Copy full SHA for 7a11671
1 file changed
Lib/test/test_mmap.py
@@ -69,7 +69,7 @@ def test_both():
69
m.seek(0,2)
70
print ' Seek to last byte'
71
assert m.tell() == len(m)
72
-
+
73
print ' Try to seek to negative position...'
74
try:
75
m.seek(-1)
@@ -97,14 +97,14 @@ def test_both():
97
# Try resizing map
98
print ' Attempting resize()'
99
100
- m.resize( 512 )
+ m.resize( 512 )
101
except SystemError:
102
# resize() not supported
103
# No messages are printed, since the output of this test suite
104
# would then be different across platforms.
105
pass
106
else:
107
- # resize() is supported
+ # resize() is supported
108
109
110
m.close()
0 commit comments