commit | 46550fffa77613813d536d73da1b88cf9a28ad94 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Oct 05 22:09:31 2016 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Oct 05 22:09:31 2016 -0700 |
tree | 64ed4c7e1e236630688172a5f5b296934be03735 | |
parent | d7cfae994b8a73dafd52d7ad46373c78cca1e3d6 [diff] [blame] |
skip test on windows
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 092c4a1..0350b3d 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py
@@ -652,6 +652,7 @@ finally: s.close() + @unittest.skipIf(os.name == 'nt', 'cannot resize anonymous mmaps on Windows') def test_resize_past_pos(self): m = mmap.mmap(-1, 8192) self.addCleanup(m.close)