Kaydet (Commit) 05d3921c authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

Issue #26927: Fixed test_mmap on platforms with 32-bit off_t (like Android).

Patch by Xavier de Gaye.
üst 5917f973
......@@ -730,7 +730,7 @@ class LargeMmapTests(unittest.TestCase):
f.seek(num_zeroes)
f.write(tail)
f.flush()
except (OSError, OverflowError):
except (OSError, OverflowError, ValueError):
try:
f.close()
except (OSError, OverflowError):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment