Commit a243b448 authored by Martin Panter's avatar Martin Panter

Issue #25004: Merge 3.4 into 3.5

parents d2e7d73a 10679e34
......@@ -731,7 +731,10 @@ class LargeMmapTests(unittest.TestCase):
f.write(tail)
f.flush()
except (OSError, OverflowError):
f.close()
try:
f.close()
except (OSError, OverflowError):
pass
raise unittest.SkipTest("filesystem does not have largefile support")
return f
......
......@@ -103,6 +103,7 @@ Mike Bayer
Samuel L. Bayer
Donald Beaudry
David Beazley
John Beck
Ingolf Becker
Neal Becker
Robin Becker
......
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