diff options
| -rw-r--r-- | Lib/test/test_mmap.py | 5 | ||||
| -rw-r--r-- | Misc/ACKS | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 4d23f16890..ad93a59383 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -727,7 +727,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 @@ -100,6 +100,7 @@ Mike Bayer Samuel L. Bayer Donald Beaudry David Beazley +John Beck Neal Becker Robin Becker Torsten Becker |
