From: Fred Drake Date: Wed, 5 Apr 2000 14:17:11 +0000 (+0000) Subject: Mark Hammond: X-Git-Tag: v1.6a2~133 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=605843f0c09fa3fc1a065615581c041de3134b80;p=python Mark Hammond: This patch fixes the mmap module on Windows 9x. Also updates the mmap test to remove the test file. --- diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index e932bec3b0..e5da187e0c 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -59,6 +59,8 @@ def test_both(): assert start == PAGESIZE assert end == PAGESIZE + 6 + m.close() + os.unlink("foo") print ' Test passed' test_both()