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

Skip to content

Commit da19767

Browse files
author
Martin Panter
committed
Issue #25004: Merge 3.4 into 3.5
2 parents 6cb1963 + e8d58d1 commit da19767

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

Lib/test/test_mmap.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,10 @@ def _make_test_file(self, num_zeroes, tail):
731731
f.write(tail)
732732
f.flush()
733733
except (OSError, OverflowError):
734-
f.close()
734+
try:
735+
f.close()
736+
except (OSError, OverflowError):
737+
pass
735738
raise unittest.SkipTest("filesystem does not have largefile support")
736739
return f
737740

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Mike Bayer
103103
Samuel L. Bayer
104104
Donald Beaudry
105105
David Beazley
106+
John Beck
106107
Ingolf Becker
107108
Neal Becker
108109
Robin Becker

0 commit comments

Comments
 (0)