mirror of
https://github.com/python/cpython.git
synced 2025-09-01 14:38:00 +00:00
Issue #25004: Merge 3.5 into 3.6
This commit is contained in:
commit
1b8be1fbe5
2 changed files with 5 additions and 1 deletions
|
@ -731,7 +731,10 @@ class LargeMmapTests(unittest.TestCase):
|
||||||
f.write(tail)
|
f.write(tail)
|
||||||
f.flush()
|
f.flush()
|
||||||
except (OSError, OverflowError):
|
except (OSError, OverflowError):
|
||||||
|
try:
|
||||||
f.close()
|
f.close()
|
||||||
|
except (OSError, OverflowError):
|
||||||
|
pass
|
||||||
raise unittest.SkipTest("filesystem does not have largefile support")
|
raise unittest.SkipTest("filesystem does not have largefile support")
|
||||||
return f
|
return f
|
||||||
|
|
||||||
|
|
|
@ -103,6 +103,7 @@ Mike Bayer
|
||||||
Samuel L. Bayer
|
Samuel L. Bayer
|
||||||
Donald Beaudry
|
Donald Beaudry
|
||||||
David Beazley
|
David Beazley
|
||||||
|
John Beck
|
||||||
Ingolf Becker
|
Ingolf Becker
|
||||||
Neal Becker
|
Neal Becker
|
||||||
Robin Becker
|
Robin Becker
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue