Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 1b8be1f

Browse files
author
Martin Panter
committed
Issue python#25004: Merge 3.5 into 3.6
2 parents 015e3f6 + da19767 commit 1b8be1f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

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)